:root {
    --primary: #a2ba38; /* Slightly adjusted lime-green for better vibrancy and balance */
    --primary-dark: #5E9630; /* Darker, richer tone for depth and contrast */
    --primary-light: #A6D86F; /* Added light variant for highlights or hover states */
    --secondary: #2A2A2A; /* Softer charcoal for less harshness, better readability */
    --accent: #F5A623; /* Added warm accent color for calls-to-action or highlights */
    --background: #121212; /* Subtle off-black for less stark contrast and modern feel */
    --text: #F5F5F5; /* Off-white for text to reduce eye strain */
    --text-secondary: #B0B0B0; /* Lighter gray for secondary text, better contrast */
    --white: #FFFFFF;
    --black: #000000;
    --charcoal: #2A2A2A; /* Updated to match secondary */
    --lime-green: #7ABA38; /* Aligned with primary */
    --cool-gray: #B0B0B0; /* Aligned with text-secondary */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--background);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    max-width: 1300px;
    margin: 0 auto;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text-top {
    color: var(--lime-green);
}

.logo-text-bottom {
    color: var(--black);
    font-size: 0.9em;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-left: 32px;
}

.nav-link {
    color: var(--black);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lime-green);
    transition: width 0.2s ease;
}

.nav-link:hover {
    color: var(--lime-green);
}

.nav-link:hover::after {
    width: 100%;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--lime-green);
    color: var(--black);
    box-shadow: 0 2px 4px rgba(140, 198, 63, 0.15);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 8px rgba(140, 198, 63, 0.25);
    transform: translateY(-1px);
}

.btn-outline {
    border: 2px solid var(--lime-green);
    color: var(--lime-green);
    background: transparent;
}

.btn-outline:hover {
    background: var(--lime-green);
    color: var(--black);
    box-shadow: 0 4px 8px rgba(140, 198, 63, 0.15);
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--black);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: var(--white);
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu .nav-link {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--cool-gray);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-menu .nav-link:last-child {
    border-bottom: none;
}

.mobile-menu .btn {
    margin-top: 16px;
    width: 100%;
    text-align: center;
}

/* Main Content */
main {
    flex: 1;
    margin-top: 72px;
    /* Header height */
}

/* Footer Styles */
.footer {
    background: var(--charcoal);
    color: var(--text);
    padding: 60px 0 30px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3,
.footer-newsletter h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
}

.footer-brand p,
.footer-newsletter p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-link {
    color: var(--text-secondary);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-link:hover {
    color: var(--lime-green);
    transform: translateY(-2px);
    opacity: 1;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--lime-green);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form input::placeholder {
    color: var(--text-secondary);
}

.newsletter-form button {
    padding: 12px 24px;
    background: var(--lime-green);
    color: var(--black);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--lime-green);
    text-decoration: underline;
}

.footer-bottom a {
    color: var(--lime-green);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-bottom a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand p,
    .footer-newsletter p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    text-align: center;
    max-width: 60vw;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Who We Are Section */
.who-we-are {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.who-we-are-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.who-we-are-text {
    padding-right: 40px;
}

.section-subtitle {
    color: var(--lime-green);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
}

.who-we-are-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--black);
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 500;
}

.who-we-are-text p {
    font-size: 1.1rem;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: 400;
}

.who-we-are-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    padding: 24px 0;
    border-top: 1px solid var(--cool-gray);
    border-bottom: 1px solid var(--cool-gray);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--lime-green);
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.who-we-are-image {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(140, 198, 63, 0.1), rgba(0, 0, 0, 0.2));
}

.who-we-are-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .who-we-are-content {
        gap: 60px;
    }

    .who-we-are-text h2 {
        font-size: 2.4rem;
    }

    .lead-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .who-we-are {
        padding: 80px 0;
    }

    .who-we-are-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .who-we-are-text {
        padding-right: 0;
    }

    .who-we-are-image {
        height: 400px;
    }

    .who-we-are-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .who-we-are-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .who-we-are-text h2 {
        font-size: 2rem;
    }
}

/* Recent Investments Section */
.recent-investments {
    padding: 100px 0;
    background: var(--background);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 400;
}

.investments-carousel {
    position: relative;
    padding: 0 40px;
}

.investment-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 10px;
    transition: transform 0.3s ease;
}

.investment-card:hover {
    transform: translateY(-10px);
}

.investment-image {
    height: 250px;
    overflow: hidden;
}

.investment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.investment-content {
    padding: 24px;
}

.investment-location {
    font-size: 0.9rem;
    color: var(--black);
    margin-bottom: 8px;
    font-weight: 500;
}

.investment-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.investment-details {
    color: var(--black);
    margin-bottom: 16px;
    height: 144px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    line-height: 1.5;
    font-weight: 400;
}

.investment-buttons {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.investment-buttons .btn {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 30px;
    font-size: 14px;
}

.btn-primary_view {
    background: var(--lime-green);
    color: var(--black);
    border: 2px solid var(--lime-green);
}

.btn-primary_view:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-primary_request {
    background: transparent;
    color: var(--lime-green);
    border: 2px solid var(--lime-green);
}

.btn-primary_request:hover {
    background: var(--lime-green);
    color: var(--black);
    transform: translateY(-2px);
}

.interested-btn {
    background: var(--lime-green) !important;
    color: var(--black) !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #f5f5f5;
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    padding: 0 40px 40px;
    margin: 0 -10px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    margin: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    border: 1px solid var(--cool-gray);
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--black);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    flex-grow: 1;
    overflow-y: auto;
    max-height: 200px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--cool-gray);
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--lime-green);
    background: var(--lime-green);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 4px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.author-info p {
    color: var(--lime-green);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.swiper-slide {
    height: auto;
   /*  display: flex; */
    padding-bottom: 20px;
}

.testimonials-carousel .swiper-slide {
    height: auto;
}

.testimonials-carousel .swiper-wrapper {
    align-items: stretch;
}

.testimonials-carousel .swiper-pagination {
    bottom: 0;
}

/* Modal Styles */
.modal-content {
    background: var(--white);
    border-radius: 20px;
}

.modal-header {
    border-bottom: 1px solid var(--cool-gray);
    padding: 20px;
}

.modal-title {
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.modal-body {
    padding: 20px;
    color: var(--black);
}

.modal-footer {
    border-top: 1px solid var(--cool-gray);
    padding: 20px;
}

.modal-footer .btn {
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.modal-footer .btn-secondary {
    background: var(--cool-gray);
    color: var(--black);
    border: none;
}

.modal-footer .btn-primary {
    background: var(--lime-green);
    color: var(--black);
    border: none;
}

@media (max-width: 768px) {
    .who-we-are-content {
        grid-template-columns: 1fr;
    }

    .who-we-are-text {
        padding-right: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

/* About Page Styles */
.page-header {
    padding: 120px 0;
    text-align: center;
    background: var(--background);
    color: var(--white);
}

.page-header .section-subtitle {
    color: var(--lime-green);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
}

.page-header p {
    font-size: 1.3rem;
    color: var(--white);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.about-content p {
    color: var(--charcoal);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-content .lead-text {
    font-size: 1.3rem;
    color: var(--black);
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 500;
}

.about-image {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

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

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding: 24px 0;
    border-top: 1px solid var(--cool-gray);
}

.approach-section {
    padding: 100px 0;
    background: var(--background);
    color: var(--white);
}

.approach-section .section-title h2 {
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.approach-section .section-title p {
    color: var(--white);
    opacity: 0.9;
    font-size: 1.2rem;
    line-height: 1.6;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.approach-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.approach-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.approach-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
}

.approach-card p {
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
}

.approach-icon {
    font-size: 2rem;
    color: var(--lime-green);
    margin-bottom: 16px;
}

.team-section {
    padding: 100px 0;
    background: var(--white);
}

.team-section .section-title h2 {
    color: var(--black);
}

.team-section .section-title p {
    color: var(--charcoal);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.team-card {
    background: var(--white);
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 16px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.team-card p {
    color: var(--lime-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-section {
    padding: 100px 0;
    background: var(--background);
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.cta-content p {
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

@media (max-width: 1024px) {
    .about-grid,
    .approach-grid,
    .team-grid {
        gap: 40px;
    }

    .page-header h1 {
        font-size: 3rem;
    }

    .about-content h2,
    .cta-content h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .approach-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 400px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 80px 0;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .about-content h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* Experience Section */
.experience-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(122, 186, 56, 0.05) 0%, rgba(122, 186, 56, 0) 100%);
    pointer-events: none;
}

.experience-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.experience-content .section-subtitle {
    color: var(--lime-green);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
}

.experience-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.experience-content .lead-text {
    font-size: 1.3rem;
    color: var(--black);
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.experience-content p {
    font-size: 1.1rem;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.experience-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(122, 186, 56, 0.1);
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--lime-green);
}

.experience-icon {
    width: 80px;
    height: 80px;
    background: var(--lime-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--white);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.experience-card:hover .experience-icon {
    transform: scale(1.1);
    background: var(--primary-dark);
}

.experience-card .experience-icon {
    color: var(--white)!important;
}

.experience-card-content {
    text-align: center;
}

.experience-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
}

.experience-card p {
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1rem;
}

.experience-stats {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(122, 186, 56, 0.2);
}

.experience-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.experience-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lime-green);
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.experience-stats .stat-label {
    font-size: 0.9rem;
    color: var(--charcoal);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .experience-grid {
        gap: 20px;
    }

    .experience-content h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .experience-section {
        padding: 80px 0;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .experience-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .experience-section {
        padding: 60px 0;
    }

    .experience-content h2 {
        font-size: 2rem;
    }

    .experience-content .lead-text {
        font-size: 1.2rem;
    }
}

/* General Text Styles */
p {
    color: var(--charcoal);
}

.section-title p {
    color: var(--charcoal);
}

/* Section Background Colors */
.about-section,
.experience-section,
.team-section {
    background: var(--white);
}

.approach-section,
.cta-section {
    background: var(--background);
}

/* Section Text Colors */
.about-section h2,
.experience-section h2,
.team-section h2 {
    color: var(--black);
}

.approach-section h2,
.cta-section h2 {
    color: var(--white);
}

.about-section p,
.experience-section p,
.team-section p {
    color: var(--charcoal);
}

.approach-section p,
.cta-section p {
    color: var(--white);
    opacity: 0.9;
}

/* Experience Cards */
.experience-card {
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
}

.experience-icon {
    font-size: 2rem;
    color: var(--lime-green);
    margin-bottom: 16px;
}

/* Approach Cards */
.approach-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.approach-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.approach-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
}

.approach-card p {
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
}

.approach-icon {
    font-size: 2rem;
    color: var(--lime-green);
    margin-bottom: 16px;
}

/* Team Cards */
.team-card {
    background: var(--white);
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 16px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Section */
.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-header {
        padding: 80px 0;
    }

    .page-header h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 1rem;
    }
}
/* FAQ Section Styles */
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding-bottom: 15px;
}

.faq-category h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--lime-green);
    border-radius: 2px;
}

.faq-accordion {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid rgba(122, 186, 56, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    background: var(--white);
}

.faq-question:hover {
    background: rgba(122, 186, 56, 0.05);
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.faq-question-content i {
    font-size: 1.2rem;
    color: var(--lime-green);
    width: 24px;
    text-align: center;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin: 0;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
    flex: 1;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lime-green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    background: rgba(122, 186, 56, 0.02);
    opacity: 0;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    opacity: 1;
    padding: 20px 30px;
    /* max-height set dynamically by JavaScript */
}

.faq-answer p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--charcoal);
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .faq-category h2 {
        font-size: 1.8rem;
        margin-bottom: 24px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question-content {
        gap: 12px;
    }

    .faq-question-content i {
        font-size: 1.1rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 16px 20px;
    }

    .faq-answer p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-category h2 {
        font-size: 1.6rem;
    }

    .faq-question {
        padding: 16px;
    }

    .faq-question-content {
        gap: 10px;
    }

    .faq-question-content i {
        font-size: 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 16px;
    }

    .faq-item.active .faq-answer {
        padding: 12px 16px;
    }
}

/* Investment Page Styles */
.invest-page .hero-section {
    padding: 120px 0 100px !important;
    background: linear-gradient(135deg, var(--background) 0%, #1a1a1a 100%) !important;
    position: relative;
    overflow: hidden;
}

.invest-page .hero-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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(122,186,56,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.invest-page .hero-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.invest-page .hero-text {
    color: var(--white) !important;
}

.invest-page .hero-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    background: rgba(122, 186, 56, 0.1);
    color: var(--lime-green);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(122, 186, 56, 0.2);
}

.invest-page .hero-badge i {
    font-size: 1rem;
}

.invest-page .hero-text h1 {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    margin-bottom: 24px !important;
    color: var(--white) !important;
}

.invest-page .hero-text .highlight {
    color: var(--lime-green) !important;
}

.invest-page .hero-description {
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
    color: var(--text-secondary) !important;
    margin-bottom: 40px !important;
}

.invest-page .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px;
    margin-bottom: 40px;
}

.invest-page .hero-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.invest-page .hero-stat .stat-number {
    display: block !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: var(--lime-green) !important;
    margin-bottom: 8px !important;
}

.invest-page .hero-stat .stat-label {
    font-size: 0.9rem !important;
    color: var(--text-secondary) !important;
    font-weight: 500 !important;
}

.invest-page .hero-buttons {
    display: flex !important;
    gap: 16px;
}

.invest-page .hero-visual {
    position: relative;
}

.invest-page .hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.invest-page .hero-image img {
    width: 100% !important;
    height: 500px !important;
    object-fit: cover !important;
}

.invest-page .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(122, 186, 56, 0.2), rgba(0, 0, 0, 0.4));
}

.invest-page .floating-card {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
}

.invest-page .floating-card .card-icon {
    width: 40px;
    height: 40px;
    background: var(--lime-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.2rem;
}

.invest-page .floating-card .card-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.invest-page .floating-card .card-content p {
    font-size: 0.9rem;
    color: var(--charcoal);
    margin: 0;
}

/* Section Headers */
.invest-page .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.invest-page .section-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    background: rgba(122, 186, 56, 0.1);
    color: var(--lime-green);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(122, 186, 56, 0.2);
}

.invest-page .section-header h2 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 16px !important;
    color: var(--white) !important;
}

.invest-page .section-header p {
    font-size: 1.1rem !important;
    color: var(--text-secondary) !important;
    max-width: 600px;
    margin: 0 auto;
}

/* Section-specific header colors */
.invest-page .growth-section .section-header h2,
.invest-page .growth-section .section-header p,
.invest-page .trade-section .section-header h2,
.invest-page .trade-section .section-header p,
.invest-page .climate-section .section-header h2,
.invest-page .climate-section .section-header p,
.invest-page .summary-section .section-header h2,
.invest-page .summary-section .section-header p,
.invest-page .advantage-section .section-header h2,
.invest-page .advantage-section .section-header p {
    color: var(--black) !important;
}

.invest-page .growth-section .section-header p,
.invest-page .trade-section .section-header p,
.invest-page .climate-section .section-header p,
.invest-page .summary-section .section-header p,
.invest-page .advantage-section .section-header p {
    color: var(--charcoal) !important;
}

/* Growth Section */
.invest-page .growth-section {
    padding: 80px 0 !important;
    background: var(--white) !important;
}

.invest-page .growth-section .section-header h2,
.invest-page .growth-section .section-header p {
    color: var(--black) !important;
}

/* Jobs Section */
.invest-page .jobs-section {
    padding: 100px 0 !important;
    background: var(--background) !important;
    position: relative;
    overflow: hidden;
}

.invest-page .jobs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(122, 186, 56, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.invest-page .jobs-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.invest-page .jobs-overview {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px;
}

.invest-page .overview-card {
    background: var(--white) !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    padding-top: 17px !important;
    padding-bottom: 17px !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(122, 186, 56, 0.1);
    position: relative;
    overflow: hidden;
}

.invest-page .overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--lime-green), var(--primary-dark));
}

.invest-page .overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2) !important;
    border-color: var(--lime-green);
}

.invest-page .overview-number {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: var(--lime-green) !important;
    margin-bottom: 12px !important;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.invest-page .overview-label {
    font-size: 1rem !important;
    color: var(--charcoal) !important;
    font-weight: 600 !important;
    margin-bottom: 16px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.invest-page .overview-trend {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: var(--lime-green) !important;
    padding: 8px 16px;
    background: rgba(122, 186, 56, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(122, 186, 56, 0.2);
}

.invest-page .overview-trend i {
    font-size: 0.8rem;
}

.invest-page .sector-breakdown {
    background: var(--white) !important;
    padding: 57px !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
    position: relative;
    overflow: hidden;
}

.invest-page .sector-breakdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--lime-green), var(--primary-dark));
}

.invest-page .sector-breakdown h3 {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: var(--black) !important;
    margin-bottom: 32px !important;
    text-align: center;
    position: relative;
}

.invest-page .sector-breakdown h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--lime-green);
    border-radius: 2px;
}

.invest-page .sector-grid {
    display: flex !important;
    flex-direction: column;
    gap: 20px;
}

.invest-page .sector-item {
    display: flex !important;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(122, 186, 56, 0.05) 0%, rgba(122, 186, 56, 0.02) 100%);
    border-radius: 16px;
    border: 1px solid rgba(122, 186, 56, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.invest-page .sector-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--lime-green);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.invest-page .sector-item:hover {
    background: linear-gradient(135deg, rgba(122, 186, 56, 0.1) 0%, rgba(122, 186, 56, 0.05) 100%);
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(122, 186, 56, 0.15);
}

.invest-page .sector-item:hover::before {
    transform: scaleY(1);
}

.invest-page .sector-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--lime-green), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(122, 186, 56, 0.3);
    transition: all 0.3s ease;
}

.invest-page .sector-item:hover .sector-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(122, 186, 56, 0.4);
}

.invest-page .sector-info {
    flex: 1;
}

.invest-page .sector-info h4 {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: var(--black) !important;
    margin-bottom: 8px !important;
    line-height: 1.3;
}

.invest-page .sector-growth {
    font-size: 1rem !important;
    color: var(--lime-green) !important;
    font-weight: 700 !important;
    display: flex;
    align-items: center;
    gap: 6px;
}

.invest-page .sector-growth::before {
    content: '↗';
    font-size: 1.2rem;
    font-weight: 800;
}

/* Trade Section */
.invest-page .trade-section {
    padding: 80px 0 !important;
    background: var(--white) !important;
}

.invest-page .trade-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 80px;
    align-items: center;
}

.invest-page .trade-text h2 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: var(--black) !important;
    margin-bottom: 16px !important;
}

.invest-page .trade-text p {
    font-size: 1.1rem !important;
    color: var(--charcoal) !important;
    line-height: 1.6 !important;
    margin-bottom: 40px !important;
}

.invest-page .trade-highlights {
    display: flex !important;
    flex-direction: column;
    gap: 24px;
}

.invest-page .highlight-item {
    display: flex !important;
    align-items: flex-start;
    gap: 16px;
}

.invest-page .highlight-icon {
    width: 50px;
    height: 50px;
    background: rgba(122, 186, 56, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lime-green);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.invest-page .highlight-content h4 {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: var(--black) !important;
    margin-bottom: 8px !important;
}

.invest-page .highlight-content p {
    color: var(--charcoal) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.invest-page .trade-stats {
    display: flex !important;
    flex-direction: column;
    gap: 30px;
}

.invest-page .trade-stat {
    text-align: center;
}

.invest-page .stat-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lime-green), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 10px 30px rgba(122, 186, 56, 0.3);
}

.invest-page .stat-value {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--black) !important;
}

.invest-page .stat-label {
    font-size: 1rem !important;
    color: var(--charcoal) !important;
    font-weight: 500 !important;
}

/* Economy Section */
.invest-page .economy-section {
    padding: 80px 0 !important;
    background: var(--background) !important;
}

.invest-page .economy-grid {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr !important;
    gap: 30px;
}

.invest-page .economy-card {
    background: var(--white) !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10) !important;
    padding: 32px 24px !important;
    margin-bottom: 32px;
    border: 1px solid rgba(122,186,56,0.08);
    transition: box-shadow 0.2s, border-color 0.2s;
}
.economy-card:hover {
    box-shadow: 0 16px 48px rgba(122,186,56,0.13) !important;
    border-color: var(--lime-green);
}
.economy-card .card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 0 12px 0 !important;
    background: transparent !important;
    margin-bottom: 0;
}
.economy-card .card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--lime-green), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    font-size: 1.25rem;
    box-shadow: 0 4px 16px rgba(122,186,56,0.18);
}
.economy-card .fa-cogs,
.economy-card .fa-shield-alt {
    color: var(--white) !important;
}
.economy-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.01em;
    font-family: 'Montserrat', sans-serif;
}
.economy-card .card-content ul {
    margin: 0;
    padding-left: 1.2em;
    color: var(--charcoal);
    font-size: 1.08rem;
    line-height: 1.7;
}
.economy-card .stability-metrics {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.economy-card .metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(122,186,56,0.06);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 1rem;
}
.economy-card .metric-label {
    color: var(--charcoal);
    font-weight: 500;
}
.economy-card .metric-value {
    color: var(--lime-green);
    font-weight: 700;
}

@media (max-width: 1024px) {
    .economy-card {
        padding: 24px 12px !important;
    }
    .economy-card .card-header {
        gap: 10px;
        padding-bottom: 10px !important;
    }
    .economy-card .card-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    .economy-card h3 {
        font-size: 1.08rem;
    }
}
@media (max-width: 768px) {
    .economy-card {
        padding: 18px 6px !important;
        margin-bottom: 20px;
    }
    .economy-card .card-header {
        gap: 8px;
        padding-bottom: 8px !important;
    }
    .economy-card .card-icon {
        width: 28px;
        height: 28px;
        font-size: 0.95rem;
    }
    .economy-card h3 {
        font-size: 1rem;
    }
    .economy-card .card-content ul {
        font-size: 0.98rem;
    }
}
@media (max-width: 480px) {
    .economy-card {
        padding: 12px 2px !important;
        border-radius: 14px !important;
    }
    .economy-card .card-header {
        gap: 6px;
        padding-bottom: 6px !important;
    }
    .economy-card .card-icon {
        width: 22px;
        height: 22px;
        font-size: 0.8rem;
    }
    .economy-card h3 {
        font-size: 0.92rem;
    }
    .economy-card .card-content ul {
        font-size: 0.92rem;
    }
}

.invest-page .economy-card.large {
    grid-column: span 1;
}

.invest-page .gdp-comparison {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.invest-page .comparison-item {
    text-align: center;
}

.invest-page .comparison-value {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: var(--lime-green) !important;
    margin-bottom: 8px !important;
}

.invest-page .comparison-label {
    font-size: 0.9rem !important;
    color: var(--charcoal) !important;
    font-weight: 500 !important;
}

.invest-page .comparison-divider {
    font-size: 1.2rem !important;
    color: var(--charcoal) !important;
    font-weight: 600 !important;
}

.invest-page .industry-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.invest-page .industry-list li {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(122, 186, 56, 0.1);
    color: var(--charcoal) !important;
}

.invest-page .industry-list li:last-child {
    border-bottom: none;
}

.invest-page .industry-list li i {
    color: var(--lime-green) !important;
    width: 20px;
}

.invest-page .stability-metrics {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.invest-page .metric {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(122, 186, 56, 0.05);
    border-radius: 8px;
}

.invest-page .metric-label {
    font-size: 0.9rem !important;
    color: var(--charcoal) !important;
    font-weight: 500 !important;
}

.invest-page .metric-value {
    font-size: 0.9rem !important;
    color: var(--lime-green) !important;
    font-weight: 600 !important;
}

/* Climate Section */
.invest-page .climate-section {
    padding: 80px 0 !important;
    background: var(--white) !important;
}

.invest-page .climate-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 80px;
    align-items: center;
}

.invest-page .climate-text h2 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: var(--black) !important;
    margin-bottom: 16px !important;
}

.invest-page .climate-text p {
    font-size: 1.1rem !important;
    color: var(--charcoal) !important;
    line-height: 1.6 !important;
    margin-bottom: 40px !important;
}

.invest-page .climate-benefits {
    display: flex !important;
    flex-direction: column;
    gap: 24px;
}

.invest-page .benefit-item {
    display: flex !important;
    align-items: flex-start;
    gap: 16px;
}

.invest-page .benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(122, 186, 56, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lime-green);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.invest-page .benefit-content h4 {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: var(--black) !important;
    margin-bottom: 8px !important;
}

.invest-page .benefit-content p {
    color: var(--charcoal) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.invest-page .climate-stats {
    display: flex !important;
    flex-direction: column;
    gap: 30px;
}

.invest-page .climate-stat {
    text-align: center;
    padding: 24px;
    background: rgba(122, 186, 56, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(122, 186, 56, 0.1);
}

.invest-page .climate-stat .stat-number {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: var(--lime-green) !important;
    margin-bottom: 8px !important;
}

.invest-page .climate-stat .stat-label {
    font-size: 1rem !important;
    color: var(--charcoal) !important;
    font-weight: 500 !important;
}

/* Infrastructure Section */
.invest-page .infrastructure-section {
    padding: 80px 0 !important;
    background: var(--background) !important;
}

.invest-page .infrastructure-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px;
}

.invest-page .infrastructure-card {
    background: var(--white) !important;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease;
}

.invest-page .infrastructure-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.invest-page .card-image {
    height: 200px;
    overflow: hidden;
}

.invest-page .card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.invest-page .infrastructure-card .card-content {
    padding: 24px !important;
}

.invest-page .infrastructure-card h3 {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: var(--black) !important;
    margin-bottom: 12px !important;
}

.invest-page .infrastructure-card p {
    color: var(--charcoal) !important;
    line-height: 1.6 !important;
    margin-bottom: 16px !important;
}

.invest-page .project-impact {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(122, 186, 56, 0.05);
    border-radius: 8px;
}

.invest-page .impact-label {
    font-size: 0.9rem !important;
    color: var(--charcoal) !important;
    font-weight: 500 !important;
}

.invest-page .impact-value {
    font-size: 0.9rem !important;
    color: var(--lime-green) !important;
    font-weight: 600 !important;
}

/* Summary Section */
.invest-page .summary-section {
    padding: 80px 0 !important;
    background: var(--white) !important;
}

.invest-page .summary-header {
    text-align: center;
    margin-bottom: 60px;
}

.invest-page .summary-header h2 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: var(--black) !important;
    margin-bottom: 16px !important;
}

.invest-page .summary-header p {
    font-size: 1.1rem !important;
    color: var(--charcoal) !important;
    max-width: 600px;
    margin: 0 auto;
}

.invest-page .summary-table {
    background: var(--white) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    overflow: hidden;
    border: 1px solid rgba(122, 186, 56, 0.1);
}

.invest-page .table-header {
    background: var(--lime-green) !important;
    padding: 24px !important;
    text-align: center;
}

.invest-page .table-header h3 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--black) !important;
    margin: 0 !important;
}

.invest-page .table-content {
    padding: 0 !important;
}

.invest-page .table-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    border-bottom: 1px solid rgba(122, 186, 56, 0.1);
}

.invest-page .table-row:last-child {
    border-bottom: none;
}

.invest-page .table-cell {
    padding: 20px 24px !important;
    display: flex !important;
    align-items: center;
}

.invest-page .table-row:nth-child(even) {
    background: rgba(122, 186, 56, 0.02) !important;
}

.invest-page .cell-label {
    font-size: 1rem !important;
    color: var(--charcoal) !important;
    font-weight: 500 !important;
}

.invest-page .cell-value {
    font-size: 1rem !important;
    color: var(--black) !important;
    font-weight: 600 !important;
}

/* Opportunities Section */
.invest-page .opportunities-section {
    padding: 80px 0 !important;
    background: var(--background) !important;
}

.invest-page .opportunities-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px;
}

.invest-page .opportunity-card {
    background: var(--white) !important;
    padding: 32px !important;
    border-radius: 16px !important;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease;
}

.invest-page .opportunity-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.invest-page .opportunity-icon {
    width: 60px;
    height: 60px;
    background: var(--lime-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--black);
    font-size: 1.5rem;
}

.invest-page .opportunity-card h3 {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: var(--black) !important;
    margin-bottom: 16px !important;
}

.invest-page .opportunity-card p {
    color: var(--charcoal) !important;
    line-height: 1.6 !important;
}

/* Advantage Section */
.invest-page .advantage-section {
    padding: 80px 0 !important;
    background: var(--white) !important;
}

.invest-page .advantage-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 80px;
    align-items: center;
}

.invest-page .advantage-text h2 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: var(--black) !important;
    margin-bottom: 16px !important;
}

.invest-page .advantage-text p {
    font-size: 1.1rem !important;
    color: var(--charcoal) !important;
    line-height: 1.6 !important;
    margin-bottom: 40px !important;
}

.invest-page .advantage-features {
    display: flex !important;
    flex-direction: column;
    gap: 16px;
}

.invest-page .feature-item {
    display: flex !important;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--charcoal) !important;
}

.invest-page .feature-item i {
    color: var(--lime-green) !important;
    font-size: 1.2rem;
}

.invest-page .advantage-card {
    background: var(--background) !important;
    border-radius: 16px !important;
    padding: 32px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

.invest-page .advantage-card .card-header h3 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    margin-bottom: 24px !important;
    text-align: center;
}

.invest-page .focus-areas {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
}

.invest-page .focus-area {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.invest-page .area-icon {
    width: 40px;
    height: 40px;
    background: var(--lime-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.2rem;
}

.invest-page .focus-area span {
    font-size: 0.9rem !important;
    color: var(--white) !important;
    font-weight: 500 !important;
}

/* CTA Section */
.invest-page .cta-section {
    padding: 80px 0 !important;
    background: linear-gradient(135deg, var(--lime-green), var(--primary-dark)) !important;
    text-align: center;
}

.invest-page .cta-content h2 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: var(--black) !important;
    margin-bottom: 16px !important;
}

.invest-page .cta-content p {
    font-size: 1.1rem !important;
    color: rgba(0, 0, 0, 0.8) !important;
    line-height: 1.6 !important;
    margin-bottom: 40px !important;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.invest-page .cta-buttons {
    display: flex !important;
    gap: 16px;
    justify-content: center;
}

.invest-page .cta-buttons .btn-primary {
    background: var(--black) !important;
    color: var(--white) !important;
    border: 2px solid var(--black) !important;
}

.invest-page .cta-buttons .btn-primary:hover {
    background: transparent !important;
    color: var(--black) !important;
}

.invest-page .cta-buttons .btn-outline {
    background: transparent !important;
    color: var(--black) !important;
    border: 2px solid var(--black) !important;
}

.invest-page .cta-buttons .btn-outline:hover {
    background: var(--black) !important;
    color: var(--white) !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .invest-page .hero-content {
        grid-template-columns: 1fr !important;
        gap: 60px;
    }
    
    .invest-page .economy-grid {
        grid-template-columns: 1fr !important;
    }
    
    .invest-page .trade-content,
    .invest-page .climate-content,
    .invest-page .advantage-content,
    .invest-page .jobs-content {
        grid-template-columns: 1fr !important;
        gap: 60px;
    }
    
    .invest-page .infrastructure-grid {
        grid-template-columns: 1fr !important;
    }
    
    .invest-page .opportunities-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .invest-page .focus-areas {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .invest-page .hero-section {
        padding: 80px 0 !important;
    }
    
    .invest-page .hero-text h1 {
        font-size: 2.5rem !important;
    }
    
    .invest-page .hero-stats {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    
    .invest-page .floating-card {
        position: static !important;
        margin-top: 20px;
    }
    
    .invest-page .opportunities-grid {
        grid-template-columns: 1fr !important;
    }
    
    .invest-page .table-row {
        grid-template-columns: 1fr !important;
        gap: 8px;
    }
    
    .invest-page .table-cell {
        padding: 12px 16px !important;
    }
    
    .invest-page .hero-buttons,
    .invest-page .cta-buttons {
        flex-direction: column !important;
        align-items: center;
    }
    
    .invest-page .section-header h2 {
        font-size: 2rem !important;
    }
    
    .invest-page .jobs-overview {
        gap: 16px;
    }
    
    .invest-page .overview-card {
        padding: 24px !important;
    }
    
    .invest-page .overview-number {
        font-size: 2rem !important;
    }
    
    .invest-page .sector-breakdown {
        padding: 24px !important;
    }
    
    .invest-page .sector-item {
        padding: 20px;
        gap: 16px;
    }
    
    .invest-page .sector-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .invest-page .hero-text h1 {
        font-size: 2rem !important;
    }
    
    .invest-page .hero-description {
        font-size: 1rem !important;
    }
    
    .invest-page .section-header h2 {
        font-size: 1.8rem !important;
    }
    
    .invest-page .economy-card,
    .invest-page .opportunity-card {
        padding: 24px !important;
    }
    
    .invest-page .trade-stats .stat-circle {
        width: 100px;
        height: 100px;
    }
    
    .invest-page .stat-value {
        font-size: 1.2rem !important;
    }
    
    .invest-page .overview-card {
        padding: 20px !important;
    }
    
    .invest-page .overview-number {
        font-size: 1.8rem !important;
    }
    
    .invest-page .sector-breakdown {
        padding: 20px !important;
    }
    
    .invest-page .sector-item {
        padding: 16px;
        gap: 12px;
    }
    
    .invest-page .sector-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .invest-page .sector-info h4 {
        font-size: 1.1rem !important;
    }
}

.economy-card .card-header {
    padding-left: 0px !important;
    padding-right: 0px !important;
    padding-top: 0px !important;
    padding-bottom: 10px !important;
    background: transparent !important;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.economy-card .card-icon {
    font-size: 1.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
}

.economy-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    line-height: 1.2;
}

.info-card {
    border-color: var(--lime-green) !important;
}
 .info-section {
     background: linear-gradient(135deg, #060606, #060606) !important;
     padding: 80px 0;
 }

 .info-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 32px;
 }

 .info-card {
     background: #fff;
     border-radius: 18px;
     box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
     padding: 36px 28px;
     text-align: center;
     border: 2px solid var(--lime-green);
     transition: box-shadow 0.2s, transform 0.2s;
 }

 .info-card:hover {
     box-shadow: 0 8px 32px rgba(122, 186, 56, 0.13);
     transform: translateY(-6px) scale(1.03);
 }

 .info-icon {
     font-size: 2.2rem;
     color: var(--lime-green);
     margin-bottom: 18px;
 }

 .info-card h3 {
     font-size: 1.25rem;
     font-weight: 700;
     color: var(--black);
     margin-bottom: 12px;
 }

 .info-card p {
     color: var(--charcoal);
     font-size: 1.05rem;
     line-height: 1.6;
 }

 @media (max-width: 900px) {
     .info-grid {
         grid-template-columns: 1fr;
         gap: 24px;
     }
 }

/* Privacy and Terms Pages */
.privacy-section,
.terms-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.privacy-content,
.terms-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    color: #333333;
}

.last-updated {
    border-bottom: 2px solid #7ABA38;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.policy-section,
.terms-section {
    margin-bottom: 40px;
}

.policy-section h2,
.terms-section h2 {
    color: #7ABA38;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.policy-section h3,
.terms-section h3 {
    color: #333333;
    font-size: 18px;
    font-weight: 600;
    margin: 25px 0 15px 0;
    font-family: 'Montserrat', sans-serif;
}

.policy-section p,
.terms-section p {
    color: #333333;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 16px;
}

.policy-section ul,
.terms-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-section li,
.terms-section li {
    color: #333333;
    line-height: 1.6;
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #7ABA38;
    margin-top: 15px;
}

.contact-info p {
    margin-bottom: 8px;
    color: #333333;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Responsive Design for Privacy/Terms */
@media (max-width: 768px) {
    .privacy-content,
    .terms-content {
        padding: 25px;
        margin: 0 15px;
    }
    
    .policy-section h2,
    .terms-section h2 {
        font-size: 20px;
        color: #7ABA38;
    }
    
    .policy-section h3,
    .terms-section h3 {
        font-size: 16px;
        color: #333333;
    }
    
    .policy-section p,
    .terms-section p,
    .policy-section li,
    .terms-section li {
        font-size: 15px;
        color: #333333;
    }
}

@media (max-width: 480px) {
    .privacy-content,
    .terms-content {
        padding: 20px;
    }
    
    .policy-section h2,
    .terms-section h2 {
        font-size: 18px;
        color: #7ABA38;
    }
    
    .policy-section h3,
    .terms-section h3 {
        font-size: 15px;
        color: #333333;
    }
    
    .policy-section p,
    .terms-section p,
    .policy-section li,
    .terms-section li {
        font-size: 14px;
        color: #333333;
    }
    
    .contact-info {
        padding: 15px;
    }
}