/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

/* Header Styles */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e8e8e8;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center; /* Center content horizontally */
    min-height: 100px; /* Ensure enough height for larger logo */
    align-items: center; /* Center content vertically */
    position: relative; /* For better positioning control */
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center; /* Center content */
    gap: 10px;
    text-align: center; /* Center any text */
}

.logo-and-menu {
    display: flex;
    align-items: center;
    gap: 20px; /* Increased gap */
    padding: 5px 0; /* Add some vertical padding */
}

.logo-image {
    height: 150px; /* Further increased logo height */
    width: auto;
    object-fit: contain;
    margin: auto; /* Center in container */
}

/* Desktop Navigation */
.desktop-nav {
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    margin: 0;
    padding: 0 12px; /* Use padding instead of margin for more precise spacing */
    text-align: center; /* Center the text */
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    padding: 12px 0;
    display: block;
    transition: color 0.3s ease;
    font-size: 16px;
    letter-spacing: 0.3px;
    white-space: nowrap; /* Prevent line breaks within links */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.nav-link:hover, .nav-link.active {
    color: #1a365d;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid #e2e8f0;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 16px 24px;
    border-bottom: 1px solid #f7fafc;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-link {
    text-decoration: none;
    color: #4a5568;
    font-size: 15px;
    display: block;
    transition: color 0.3s ease;
    font-weight: 400;
    white-space: nowrap; /* Prevent line breaks within dropdown links */
    overflow: hidden;
    text-overflow: ellipsis; /* Add ellipsis if text is too long */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.dropdown-link:hover, .dropdown-link.active {
    color: #1a365d;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px; /* Default gap for mobile */
}

.phone-number {
    color: #1a365d;
    font-weight: 600;
    text-decoration: none;
    font-size: 17px;
    letter-spacing: 0.3px;
    white-space: nowrap; /* Prevent line breaks */
    display: inline-block; /* Better control over spacing */
    padding: 10px 15px; /* Add padding around the phone number */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    padding: 16px 32px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(26, 54, 93, 0.3);
    display: inline-block;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15), 0 8px 25px rgba(26, 54, 93, 0.4);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 16px 32px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.7);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15), 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #1a365d;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu-overlay.active {
    left: 0;
}

.mobile-menu-content {
    padding: 20px;
    height: 100%;
    overflow-y: auto;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 30px;
}

/* Mobile Header Actions */
.mobile-header-actions {
    display: none;
}

.mobile-investor-login {
    background: #1a365d;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-investor-login:hover {
    background: #2d3748;
    transform: translateY(-1px);
}

.mobile-menu-close {
    font-size: 30px;
    color: #1a365d;
    cursor: pointer;
    line-height: 1;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    margin-bottom: 20px;
}

.mobile-nav-link {
    display: block;
    padding: 15px 10px;
    color: #1a365d;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: #f8fafc;
    color: #2c5aa0;
}

/* Mobile Dropdown Styles */
.mobile-nav-item-with-dropdown {
    position: relative;
}

.mobile-dropdown {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 20px;
    border-left: 2px solid #e2e8f0;
}

.mobile-dropdown li {
    margin-bottom: 8px;
}

.mobile-dropdown-link {
    display: block;
    padding: 10px 15px;
    color: #4a5568;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.mobile-dropdown-link:hover {
    background: #f1f5f9;
    color: #1a365d;
    transform: translateX(5px);
}

.mobile-menu-toggle:hover {
    background-color: rgba(26, 54, 93, 0.1);
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: #1a365d;
    margin: 3px 0;
    transition: all 0.3s ease;
    display: block;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: #e53e3e;
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background-color: #e53e3e;
}

/* Mobile Menu Backdrop */
.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Footer Styles */
.footer {
    background: #243651;
    color: #e2e8f0;
    padding: 80px 0 30px;
    border-top: 1px solid #1a2538;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    margin-bottom: 50px;
}

.footer-section h3 {
    color: #f7fafc;
    font-size: 26px;
    margin-bottom: 24px;
    font-weight: 600;
    font-family: 'Georgia', serif;
    letter-spacing: -0.3px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
}

.footer-logo-image {
    height: 150px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Makes logo white for dark footer */
}

.footer-logo-image-large {
    height: 150px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Makes logo white for dark footer */
    transition: transform 0.3s ease;
}

.footer-logo-image-large:hover {
    transform: scale(1.05);
}

.phone-display {
    color: #e2e8f0;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-text {
    color: #cbd5e0;
    font-size: 16px;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links p {
    color: #e2e8f0;
    margin: 0;
    padding: 6px 0;
    transition: color 0.3s ease;
    cursor: default;
}

.footer-links p:hover {
    color: #f7fafc;
}

.footer-links a {
    color: #e2e8f0;
    text-decoration: none;
    margin: 0;
    padding: 6px 0;
    display: block;
    transition: color 0.3s ease;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.footer-links a:hover {
    color: #f7fafc;
    text-decoration: none;
}

.cta-button {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    cursor: default;
}

.cta-button:hover {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #cbd5e0;
    color: #cbd5e0;
}

.cta-button.secondary:hover {
    background: #cbd5e0;
    color: #1a365d;
}

.footer-logo h3 {
    margin-bottom: 0;
}

.footer-section h4 {
    color: #cbd5e0;
    font-size: 19px;
    margin-bottom: 18px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.contact-info {
    line-height: 1.9;
}

.contact-info p {
    margin-bottom: 12px;
    color: #a0aec0;
    font-size: 16px;
}

.contact-info a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-info a:hover {
    color: #f7fafc;
}

.cta-buttons {
    margin-top: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #2c5aa0;
    color: white;
    padding: 12px 24px;
    margin: 5px 10px 5px 0;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1e3f73;
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid #2c5aa0;
}

.cta-button.secondary:hover {
    background-color: #2c5aa0;
}

.disclosures {
    background-color: #0f0f0f;
    padding: 40px 0;
    margin-top: 40px;
    border-radius: 5px;
}

.disclosures h4 {
    color: #2c5aa0;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.disclosure-content {
    margin-bottom: 30px;
}

.disclosure-content p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.disclosure-content ul {
    margin-left: 20px;
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
}

.disclosure-content li {
    margin-bottom: 10px;
}

.footer-disclosures, .footer-privacy-policy {
    border-top: 1px solid #333333;
    margin-top: 30px;
    padding-top: 20px;
    color: #a0aec0;
}

.footer-disclosures h4, .footer-privacy-policy h4 {
    color: #f7fafc;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.footer-disclosures h5, .footer-privacy-policy h5 {
    color: #e2e8f0;
    font-size: 15px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 8px;
}

.disclosure-text, .privacy-text {
    max-height: 200px;
    overflow-y: auto;
    padding: 0 15px;
    font-size: 12px;
    line-height: 1.5;
    text-align: justify;
    scrollbar-width: thin;
    scrollbar-color: #4a5568 #1a202c;
}

.disclosure-text p, .privacy-text p {
    margin-bottom: 12px;
}

.privacy-text strong {
    color: #e2e8f0;
    font-weight: 600;
}

/* Webkit scrollbar styling */
.disclosure-text::-webkit-scrollbar,
.privacy-text::-webkit-scrollbar {
    width: 8px;
}

.disclosure-text::-webkit-scrollbar-track,
.privacy-text::-webkit-scrollbar-track {
    background: #1a202c;
}

.disclosure-text::-webkit-scrollbar-thumb,
.privacy-text::-webkit-scrollbar-thumb {
    background-color: #4a5568;
    border-radius: 6px;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 20px;
    text-align: center;
    color: #888888;
    font-size: 14px;
}

.footer-bottom a {
    color: #cbd5e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #f7fafc;
    text-decoration: none;
}

.securities-info {
    margin-top: 15px;
}

.securities-info p {
    font-size: 12px;
    color: #666666;
    line-height: 1.4;
}

/* Main Content Styles */
.main-content {
    min-height: calc(100vh - 160px);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    text-align: center;
    font-size: 42px;
    color: #1a365d;
    margin-bottom: 24px;
    font-weight: 600;
    font-family: 'Georgia', serif;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: #f7fafc;
    padding: 30px 0 140px; /* Reduced top padding to minimize dead space */
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 90vh; /* Slightly reduced height */
    display: flex;
    align-items: center;
}

/* Home Hero with Icon */
.home-hero .hero-text {
    position: relative;
    padding-top: 80px; /* Reduced padding to decrease dead space but still keep separation for icon */
    padding-bottom: 30px; /* More space at the bottom to make hero longer */
}

.home-hero .hero-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background-image: url('../assets/white-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.9;
}

/* Mobile styles for home hero */
@media (max-width: 768px) {
    .home-hero .hero-text {
        padding-top: 50px; /* Reduced padding on mobile to decrease dead space */
    }
    
    .home-hero .hero-text::before {
        width: 80px;
        height: 80px;
    }
}

/* Hero for About/Team page with more space */
.about-hero {
    min-height: 50vh; /* Increased minimum height */
    padding: 60px 0 80px; /* Increased padding for more space */
}

.about-hero .hero-container {
    max-width: 900px; /* Wider container for more content */
    margin: 0 auto;
    padding: 0 20px; /* Ensure padding on smaller screens */
    padding-top: 10px; /* Add minimal top padding to reduce dead space */
}

.about-hero .hero-subtitle {
    margin-bottom: 10px;
}

.about-hero .hero-title {
    margin-bottom: 15px;
}

.about-hero .hero-description {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.6;
}

/* Enhanced about hero with logo */
.about-hero-enhanced {
    padding: 120px 0 120px; /* Significantly increased top padding to create gap below header */
    position: relative;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    min-height: 550px; /* Increased minimum height for more content */
    display: flex;
    align-items: center;
}

.about-hero-enhanced .hero-container {
    max-width: 1100px; /* Even wider container for more content */
    padding: 0 40px;
    width: 100%;
}

.about-hero-enhanced .hero-text {
    text-align: center;
    position: relative;
    padding-top: 20px; /* Reduced top padding to minimize dead space */
    padding-bottom: 40px; /* Add bottom padding for more space */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-hero-enhanced .hero-text::before {
    content: "";
    position: absolute;
    top: -90px; /* Original position above the text */
    left: 50%;
    transform: translateX(-50%);
    width: 100px; /* Larger logo */
    height: 100px;
    background-image: url('../assets/white-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.9;
}

.about-hero-enhanced .hero-subtitle {
    margin-bottom: 20px;
    font-size: 36px; /* Larger subtitle */
    letter-spacing: 2.5px;
    font-weight: 500;
}

.about-hero-enhanced .hero-title {
    margin-bottom: 30px;
    font-size: 70px; /* Larger title */
    line-height: 1.1;
}

.about-hero-enhanced .hero-description {
    margin-bottom: 50px; /* Bottom margin */
    font-size: 22px; /* Larger description text */
    line-height: 1.8;
    max-width: 900px; /* Wider text container */
    font-weight: 300;
}

@media (max-width: 768px) {
    .about-hero {
        padding: 50px 0 60px; /* Increased padding on mobile */
        min-height: 40vh; /* Set minimum height on mobile */
    }
    
    .about-hero .hero-title {
        font-size: 32px;
    }
    
    .about-hero .hero-description {
        font-size: 16px;
    }
    
    .about-hero-enhanced {
        padding: 100px 0 80px; /* Increased top padding on mobile to create gap */
        min-height: 500px; /* Set explicit minimum height for mobile */
    }
    
    .about-hero-enhanced .hero-text::before {
        top: -70px; /* Original position on mobile */
        width: 80px;
        height: 80px;
    }
    
    .about-hero-enhanced .hero-subtitle {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .about-hero-enhanced .hero-title {
        font-size: 42px;
        margin-bottom: 20px;
    }
    
    .about-hero-enhanced .hero-description {
        font-size: 18px;
        line-height: 1.7;
    }
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none; /* Prevents interaction with the video */
    user-select: none; /* Prevents selection */
    -webkit-user-select: none; /* For Safari */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 93, 0.7);
    z-index: 2;
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 40px 0; /* Added top padding to reduce dead space */
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-subtitle {
    font-size: 32px;
    margin-bottom: 28px;
    opacity: 0.92;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: #cbd5e0;
}

.hero-title {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 36px;
    line-height: 1.2;
    font-family: 'Georgia', serif;
    letter-spacing: -1px;
    color: #f7fafc;
}

.hero-description {
    font-size: 21px;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.7;
    color: #e2e8f0;
    font-weight: 400;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: #f7fafc;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 28px;
    font-weight: 600;
    font-family: 'Georgia', serif;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    color: #e2e8f0;
    position: relative;
    z-index: 1;
}

.cta-button {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    color: #1a365d;
    padding: 18px 36px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .desktop-nav {
        display: none !important;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-header-actions {
        display: flex !important;
        align-items: center;
    }
    
    .header-container {
        padding: 0 20px;
        min-height: 90px; /* Increased to accommodate larger mobile logo */
    }

    .logo-image {
        height: 70px; /* Larger mobile logo */
    }
}

/* Desktop styles */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .mobile-menu-overlay {
        display: none !important;
    }
    
    .mobile-header-actions {
        display: none !important;
    }
    
    .desktop-nav {
        display: block !important;
        margin: 0 auto; /* Center the navigation */
        width: 100%; /* Take full width to enable perfect centering */
    }
    
    /* Ensure nav menu has consistent spacing */
    .nav-menu {
        display: flex;
        justify-content: center; /* Center the menu items */
        gap: 20px; /* Increased gap for better spacing */
        padding: 0; /* Remove default padding */
    }
    
    .header-actions {
        display: flex;
        align-items: center; /* Perfect vertical alignment */
        gap: 20px; /* Adjusted gap between phone number and login button */
    }
    
    /* Specific styling for login button in header */
    .header-actions .btn-primary {
        padding: 14px 28px; /* Slightly adjusted padding */
        margin-left: 0; /* Removed extra space on the left */
    }
    
    /* Enhanced phone number styling for desktop */
    .header-actions .phone-number {
        padding: 10px 0; /* Adjusted padding for desktop */
        font-size: 18px; /* Slightly larger on desktop */
    }
    
    .header-container {
        padding: 0 60px; /* Increased horizontal padding */
        min-height: 100px; /* Increased height of header */
        justify-content: center; /* Center all content horizontally */
        display: grid;
        grid-template-columns: 1fr auto 1fr; /* Logo, Navigation, Actions - equal width for first and last column */
        column-gap: 40px; /* Increased space between grid columns for better balance */
        align-items: center; /* Ensure vertical centering */
    }

    .logo-image {
        height: 160px; /* Significantly larger logo */
        margin-right: 0; /* Remove margin for centered alignment */
        display: block; /* Ensure block display for better centering */
        margin: 0 auto; /* Center horizontally */
    }
    
    .logo-and-menu {
        justify-self: center; /* Center the logo in its column */
        display: flex;
        justify-content: center; /* Center the contents */
    }
    
    .header-actions {
        justify-self: center; /* Center in the grid column */
        display: flex;
        justify-content: center; /* Center the content */
    }
    
    .nav-item {
        margin: 0; /* Remove margin for consistent spacing with padding */
        padding: 0 15px; /* Use padding for more precise control */
        position: relative;
        display: flex;
        align-items: center; /* Vertical alignment */
        height: 100%;
    }
}

/* Disclosures Page Styles */
.disclosure-section {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #1a365d;
}

.disclosure-section h2 {
    color: #1a365d;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #e8e8e8;
    padding-bottom: 10px;
}

.disclosure-content {
    color: #4a5568;
    line-height: 1.8;
}

.disclosure-content ul {
    list-style: none;
    padding: 0;
}

.disclosure-content li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.disclosure-content li:before {
    content: "•";
    color: #1a365d;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.disclosure-content strong {
    color: #2d3748;
    font-weight: 600;
}

/* Additional page styles for alternative investments */
.feature-link {
    color: #1a365d;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    display: inline-block;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: #2d3748;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

/* Feature card with icon */
.feature-card {
    position: relative;
    padding-top: 40px;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background-image: url('../assets/white-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) saturate(100%) invert(23%) sepia(71%) saturate(850%) hue-rotate(190deg) brightness(95%) contrast(95%);
    opacity: 0.85;
}

/* Hero icon as a separate element for browsers that might not support ::before properly */
.hero-icon {
    width: 80px;
    height: 80px;
    background-image: url('../assets/white-icon.png');
    background-size: contain;
    background-position: left top;
    background-repeat: no-repeat;
    opacity: 0.9;
    display: none; /* Hidden by default, JS will show if needed */
    position: absolute;
    top: 0;
    left: 0;
}

.benefit-item h3 {
    color: #1a365d;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-item p {
    color: #4a5568;
    line-height: 1.6;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #1a365d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    margin: 0 auto 20px;
}

.process-step h3 {
    color: #1a365d;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-step p {
    color: #4a5568;
    line-height: 1.6;
}

.content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.content-row.reverse {
    grid-template-columns: 1fr 1fr;
}

.content-text h2 {
    color: #1a365d;
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 600;
}

.content-text p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.risk-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.risk-list li {
    padding: 10px 0 10px 25px;
    position: relative;
    color: #4a5568;
    border-bottom: 1px solid #e8e8e8;
}

.risk-list li:before {
    content: "✓";
    color: #1a365d;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 10px;
}

.risk-list li:last-child {
    border-bottom: none;
}

.text-center {
    text-align: center;
}

.section-subtitle {
    color: #4a5568;
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .content-row, .content-row.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Team Page Styles */
.team-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.featured-team-member {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fafafa;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.member-photo-large {
    text-align: center;
}

.member-photo-large img {
    width: 100%;
    max-width: 300px;
    border-radius: 0; /* Removed border radius */
    box-shadow: none; /* Removed shadow to blend with background */
}

.member-name-large {
    color: #1a365d;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.member-title-large {
    color: #4a5568;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.9;
}

.member-credentials {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.credential {
    background-color: #1a365d;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.member-contact {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.contact-link {
    color: #1a365d;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border: 2px solid #1a365d;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background-color: #1a365d;
    color: white;
}

.member-bio-large {
    line-height: 1.8;
}

.member-bio-large p {
    color: #4a5568;
    margin-bottom: 20px;
    font-size: 16px;
}

.expertise-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.expertise-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.expertise-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.expertise-card h3 {
    color: #1a365d;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.expertise-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 15px;
}

.credentials-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.credentials-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.credential-item {
    padding: 30px;
    background-color: #fafafa;
    border-radius: 8px;
    border-top: 4px solid #1a365d;
}

.credential-item h3 {
    color: #1a365d;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.credential-item p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 15px;
}

/* Mobile responsiveness for team page */
@media (max-width: 768px) {
    .featured-team-member {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .member-name-large {
        font-size: 28px;
        text-align: center;
    }
    
    .member-title-large {
        font-size: 18px;
        text-align: center;
    }
    
    .member-credentials {
        justify-content: center;
    }
    
    .member-contact {
        justify-content: center;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
    }
}

/* Dan Werry Hero Layout */
.hero-with-dan {
    text-align: left;
    padding: 30px 0 0; /* Removed bottom padding to make Dan flush with bottom */
    min-height: auto; /* Removed minimum height constraint */
    position: relative;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%); /* Consistent with standard hero background */
}

.hero-with-dan .hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr; /* Increased Dan's column width proportion further */
    gap: 60px; /* Increased gap between image and text */
    align-items: center;
    position: relative;
    z-index: 2;
    background: transparent; /* Ensure container background is transparent */
    padding: 30px 50px 0; /* Removed bottom padding to make Dan flush with bottom */
    max-width: 1300px; /* Wider container for more prominence */
    margin: 0 auto; /* Center the container */
}

.hero-dan-image {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Align to bottom */
}

.hero-dan-image img {
    max-width: 100%; /* Full width for larger display */
    height: auto;
    border-radius: 0; /* Removed border radius */
    box-shadow: none; /* Removed box shadow */
    border: none; /* Removed border */
    mix-blend-mode: multiply; /* Helps image blend with background */
    min-width: 320px; /* Ensure minimum size for Dan's image */
    margin-bottom: 0; /* Ensure no bottom margin */
    vertical-align: bottom; /* Align to bottom */
}

.hero-with-dan .hero-text {
    text-align: left;
    position: relative;
    padding-top: 0; /* Remove top padding as logo will be in corner */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-with-dan .hero-text::before {
    content: none; /* Remove the icon */
    display: none; /* Hide completely */
}

.hero-with-dan .hero-subtitle {
    text-align: left;
    margin-bottom: 14px; /* Slightly increased margin */
    font-size: 30px; /* Increased subtitle font size */
    letter-spacing: 2.2px; /* Enhanced letter spacing */
    margin-left: 0; /* Removed left margin since icon is gone */
}

.hero-with-dan .hero-title {
    text-align: left;
    margin-bottom: 24px; /* Slightly increased margin */
    font-size: 58px; /* Larger title font size */
    margin-left: 0; /* Removed left margin since icon is gone */
}

.hero-with-dan .hero-description {
    margin: 0 0 28px 0; /* Removed left margin since icon is gone */
    text-align: left;
    font-size: 20px; /* Increased description font size */
    line-height: 1.7; /* Slightly increased line height */
}

.hero-with-dan .hero-buttons {
    margin-top: 32px; /* Increased spacing for buttons in hero-with-dan */
    margin-bottom: 20px; /* Add some bottom margin for spacing */
    gap: 24px; /* Increased gap between buttons */
}

/* Enhanced hero button with icon */
.hero-btn {
    position: relative;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    padding: 16px 32px; /* Standard padding without icon */
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(26, 54, 93, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-btn:hover {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15), 0 8px 25px rgba(26, 54, 93, 0.4);
    border-color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .hero-with-dan {
        padding: 20px 0 0; /* Removed bottom padding to make Dan flush with bottom on mobile */
    }
    
    .hero-with-dan .hero-container {
        grid-template-columns: 1fr;
        gap: 15px; /* Further reduced gap */
        padding: 10px 15px 0; /* Removed bottom padding to make Dan flush with bottom */
    }
    
    .hero-dan-image {
        order: 1; /* Put Dan's image at the bottom on mobile */
        margin-bottom: 0; /* No bottom margin */
        align-items: flex-end; /* Align to bottom */
    }
    
    .hero-dan-image img {
        max-width: 220px; /* Made image even larger on mobile */
        border-radius: 0;
        box-shadow: none;
        border: none;
        margin-bottom: 0; /* No bottom margin */
        vertical-align: bottom; /* Align to bottom */
    }
    
    /* Corner icon on mobile */
    .hero-with-dan .hero-text {
        padding-top: 0; /* No top padding needed */
        text-align: center;
        align-items: center;
        position: relative;
    }
    
    .hero-with-dan .hero-text::before {
        content: none; /* Remove the icon */
        display: none; /* Hide completely */
    }
    
    /* Responsive button adjustments */
    .hero-with-dan .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 25px;
        width: 100%;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-with-dan .hero-subtitle,
    .hero-with-dan .hero-title,
    .hero-with-dan .hero-description {
        text-align: center;
        margin-left: 0; /* Reset left margin on mobile */
    }
    
    .hero-with-dan .hero-subtitle {
        font-size: 22px; /* Even smaller subtitle on mobile */
        margin-bottom: 6px;
        margin-top: 70px; /* Add space at the top to avoid overlap with logo */
    }
    
    .hero-with-dan .hero-title {
        font-size: 32px; /* Even smaller title on mobile */
        margin-bottom: 10px;
    }
    
    .hero-with-dan .hero-description {
        margin-bottom: 15px;
        font-size: 15px; /* Even smaller description text */
        line-height: 1.5;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-with-dan {
        padding: 30px 0 40px; /* Increased bottom padding on small devices */
    }
    
    .hero-dan-image img {
        max-width: 220px; /* Further increased image size on small mobile devices */
    }
    
    .hero-with-dan .hero-text {
        padding-top: 0; /* No top padding needed */
    }
    
    .hero-with-dan .hero-text::before {
        content: none; /* Remove the icon */
        display: none; /* Hide completely */
    }
    
    .hero-with-dan .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-with-dan .hero-title {
        font-size: 28px;
    }
    
    .hero-with-dan .hero-description {
        font-size: 14px;
    }
    
    .hero-with-dan .hero-buttons {
        margin-top: 15px;
        gap: 10px; /* Less gap between buttons */
    }
    
    .hero-with-dan .btn {
        font-size: 14px;
        padding: 8px 18px;
    }
}

/* Lead Form Overlay */
.lead-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow-y: auto;
    padding: 30px 15px;
}

.lead-form-overlay.active {
    display: flex;
}

.lead-form-container {
    background-color: white;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.lead-form-header {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 10px 10px 0 0;
    position: relative;
}

.lead-form-header h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 600;
}

.lead-form-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 16px;
}

.lead-form-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.investment-lead-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a365d;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: #1a365d;
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-group input.error {
    border-color: #e53e3e;
}

.form-group input.error:focus {
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.accredited-group {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.accredited-label {
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 10px;
}

.radio-options {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;
}

.radio-option {
    display: flex;
    align-items: center;
}

.radio-option input {
    margin-right: 8px;
}

.accredited-note {
    font-size: 14px;
    color: #718096;
    line-height: 1.5;
    margin-top: 10px;
}

.form-actions {
    margin-top: 30px;
    text-align: center;
}

.form-actions .btn-primary {
    min-width: 150px;
}

.form-note {
    margin-top: 15px;
    font-size: 14px;
    color: #718096;
}

@media (max-width: 480px) {
    .lead-form-container {
        border-radius: 8px;
    }
    
    .lead-form-header {
        padding: 20px;
    }
    
    .lead-form-header h2 {
        font-size: 22px;
    }
    
    .investment-lead-form {
        padding: 20px;
    }
}