/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&family=Lato:wght@300;400;700&family=Montserrat:wght@400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    font-weight: 400;
    background-color: #f8f9fa;
}

/* Notification Bar */
.notification-bar {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    padding: 10px 20px;
    position: relative;
    z-index: 1001;
    margin-top: 0;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.notification-text {
    font-weight: 500;
    font-size: 0.95rem;
    font-family: 'Roboto', sans-serif;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.1rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.notification-close:hover {
    opacity: 1;
}

/* Navigation Bar */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-logo h2 {
    color: #1A2E40;
    font-size: 26px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    justify-content: flex-end;
}

.nav-link {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    padding: 8px 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-link:hover {
    background: #f5f5f5;
}

.nav-link.active {
    background: #6B6B6B;
    /* color: white !important; */
}

.crm-link {
    background: #4A90E2;
    color: white !important;
    padding: 10px 24px;
    border-radius: 8px;
}

.crm-link:hover {
    background: #357ABD !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #6B6B6B;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 30vh;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.7);
    z-index: 0;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    position: relative;
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Open Sans', sans-serif;
}

/* Main Container - Two Columns */
.main-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    max-width: 1400px;
    margin: 80px auto 30px;
    padding: 0 20px;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    color: #2c1810;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Left Column - Properties List */
.properties-section {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c1810;
    font-family: 'Montserrat', sans-serif;
}

.filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-select {
    padding: 10px 20px;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    background: white;
    color: #4A5568;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 150px;
}

.filter-select:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

/* Property Cards */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: -10px;
}

.loading-properties {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.no-properties {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.no-properties i {
    color: #4A90E2;
    margin-bottom: 20px;
}

.no-properties h3 {
    color: #2c1810;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.no-properties p {
    color: #666;
    font-family: 'Open Sans', sans-serif;
}

.property-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #EDF2F7;
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #FF6B6B;
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    z-index: 1;
}

.property-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-price {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    color: #2D3748;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.property-content {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.property-title {
    font-size: 14px;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
}

.property-location {
    color: #666;
    font-size: 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Open Sans', sans-serif;
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 8px 0;
    padding: 8px 0;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #555;
    font-size: 12px;
    font-family: 'Open Sans', sans-serif;
}

.property-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
}

.property-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.amenity-tag {
    background: #F7FAFC;
    color: #4A5568;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    border: 1px solid #E2E8F0;
}

.property-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-view, .btn-contact {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-view {
    background: #EDF2F7;
    color: #4A5568;
}

.btn-view:hover {
    background: #E2E8F0;
    color: #2D3748;
}

.btn-contact {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
}

.btn-contact:hover {
    background: linear-gradient(135deg, #357ABD 0%, #2c5f9e 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Right Column - Upload Form */
.upload-section {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.upload-container {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #EDF2F7;
}

.upload-header {
    text-align: center;
    margin-bottom: 25px;
}

.upload-header h2 {
    font-size: 20px;
    color: #2c1810;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
}

.upload-subtitle {
    color: #666;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
}

.form-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    position: relative;
}

.form-steps::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #E2E8F0;
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #E2E8F0;
    color: #718096;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 8px;
    transition: all 0.3s;
}

.step.active .step-number {
    background: #4A90E2;
    color: white;
    box-shadow: 0 4px 10px rgba(74, 144, 226, 0.3);
}

.step-label {
    font-size: 12px;
    color: #A0AEC0;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s;
}

.step.active .step-label {
    color: #4A90E2;
    font-weight: 500;
}

.form-step-content {
    display: none;
}

.form-step-content.active {
    display: block;
}

.form-step-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: space-between;
}

.btn-next, .btn-prev {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-next {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
}

.btn-next:hover {
    background: linear-gradient(135deg, #357ABD 0%, #2c5f9e 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-prev {
    background: #EDF2F7;
    color: #4A5568;
}

.btn-prev:hover {
    background: #E2E8F0;
    color: #2D3748;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}

.form-group label i {
    margin-right: 8px;
    color: #4A90E2;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    background: white;
    font-family: 'Open Sans', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.feature-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
}

.feature-checkbox:hover {
    border-color: #4A90E2;
    background: #f0f7ff;
}

.feature-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #4A90E2;
}

.upload-dropzone {
    border: 2px dashed #CBD5E0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: #F7FAFC;
}

.upload-dropzone:hover {
    border-color: #4A90E2;
    background: #f0f7ff;
}

.upload-dropzone i {
    font-size: 40px;
    color: #CBD5E0;
    margin-bottom: 10px;
}

.upload-hint {
    font-size: 12px;
    color: #A0AEC0;
    margin-top: 5px;
    font-family: 'Open Sans', sans-serif;
}

.image-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.image-preview img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #E2E8F0;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #555;
    font-family: 'Open Sans', sans-serif;
}

.terms-checkbox input[type="checkbox"] {
    margin-top: 4px;
    accent-color: #4A90E2;
}

.submit-btn {
    flex: 1;
    padding: 12px 20px;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #357ABD 0%, #2c5f9e 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.upload-info {
    border-top: 1px solid #E2E8F0;
    padding-top: 20px;
    font-size: 13px;
    color: #666;
    font-family: 'Open Sans', sans-serif;
}

.upload-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.upload-info i {
    color: #4A90E2;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #333;
}

/* Footer */
.footer {
    background: #1f1f1f;
    color: white;
    padding: 20px 0 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
}

.footer-section ul li a:hover {
    color: #4A90E2;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #4A90E2;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    text-align: center;
    color: #ccc;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
}

.footer-bottom a {
    color: #ccc;
    text-decoration: none;
}

/* CTA Section for Consistency */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Open Sans', sans-serif;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #4A90E2;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-container {
        grid-template-columns: 1fr;
    }
    
    .upload-section {
        position: static;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filters {
        width: 100%;
        justify-content: space-between;
    }
    
    .filter-select {
        flex: 1;
        min-width: unset;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .property-actions {
        flex-direction: column;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Additional styles from CSS2 for consistency */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.management-section {
    padding: 80px 0;
    background: white;
}

.management-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.management-text {
    flex: 1;
}

.management-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
    font-family: 'Open Sans', sans-serif;
}

.management-text h3 {
    font-size: 1.5rem;
    color: #2c1810;
    margin: 30px 0 15px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.services-list {
    list-style: none;
    margin-bottom: 30px;
}

.services-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    color: #555;
    font-family: 'Open Sans', sans-serif;
}

.services-list i {
    color: #4A90E2;
    margin-right: 10px;
    margin-top: 3px;
    font-size: 1.1rem;
}

.management-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.management-image img {
    width: 100%;
    height: auto;
    display: block;
}

.clients-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.client-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-image {
    height: 200px;
    overflow: hidden;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.client-card:hover .client-image img {
    transform: scale(1.05);
}

.client-info {
    padding: 25px;
}

.client-info h3 {
    font-size: 1.3rem;
    color: #2c1810;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.client-property {
    color: #4A90E2;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 0.9rem;
    font-family: 'Open Sans', sans-serif;
}

.client-quote {
    color: #666;
    font-style: italic;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
}

/* Navigation link active state fix */
.nav-logo a {
    text-decoration: none;
    color: inherit;
}

.nav-logo a:visited,
.nav-logo a:active,
.nav-logo a:hover {
    color: inherit;
    background: none;
    text-decoration: none;
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
    .management-content {
        flex-direction: column;
    }
    
    .management-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
}