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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.bg-green {
    background-color: #4a7c6b;
    color: white;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background-color: #4a7c6b;
    color: white;
}

.btn-primary:hover {
    background-color: #3a6b5a;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #333;
}

/* Header */
.header {
    background-color: #000;
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand span {
    font-size: 18px;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4a7c6b;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background-color: #e8e8e8;
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Investment Types */
.investment-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.type-card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.type-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.type-card p {
    font-size: 14px;
    line-height: 1.5;
}

/* Start Content */
.start-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.start-text p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.start-chart img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Resources */
.resources {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.resource-card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.resource-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.resource-card p {
    font-size: 14px;
    line-height: 1.5;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    background-color: white;
}

.contact-form textarea {
    grid-column: 1 / -1;
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    display: block;
    margin: 20px auto 0;
}

/* Footer */
.footer {
    background-color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 15px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: #4a7c6b;
}

.footer-copyright {
    color: #666;
    font-size: 14px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
}

.cookie-content {
    background-color: #000;
    color: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    text-align: left;
}

.cookie-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cookie-content p {
    margin-bottom: 30px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.cookie-buttons .btn {
    min-width: 200px;
}

.cookie-consent.hidden {
    display: none;
}

/* Thank You Page */
.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e8e8e8;
}

.thank-you-content {
    text-align: center;
}

.thank-you-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
}

/* Section Headings */
.section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .investment-types {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .resources {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .start-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #000;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    /* Hero Section */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    /* Investment Types */
    .investment-types {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Start Content */
    .start-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Resources */
    .resources {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Form */
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Footer */
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Cookie Consent */
    .cookie-content {
        padding: 30px 20px;
    }
    
    .cookie-content h3 {
        font-size: 1.5rem;
    }
    
    .cookie-buttons {
        align-items: stretch;
    }
    
    .cookie-buttons .btn {
        min-width: auto;
        width: 100%;
    }
    
    /* Thank You */
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    /* Section */
    .section {
        padding: 40px 0;
    }
    
    .section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .cookie-content {
        padding: 20px 15px;
    }
    
    .thank-you-content h1 {
        font-size: 1.8rem;
    }
}