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

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

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(128, 128, 128, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.cookie-consent.hidden {
    opacity: 0;
    pointer-events: none;
}

.cookie-content {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    max-width: 640px;
    margin: 20px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-content h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #000;
    font-family: Arial, sans-serif;
}

.cookie-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #333;
    font-family: Arial, sans-serif;
}

.cookie-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn-cookie-settings {
    background: #4285f4;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    min-width: 200px;
    text-align: center;
}

.btn-accept-all {
    background: #333;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    min-width: 200px;
    text-align: center;
}

.btn-cookie-settings:hover {
    background: #3367d6;
    transform: translateY(-1px);
}

.btn-accept-all:hover {
    background: #555;
    transform: translateY(-1px);
}

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

.navbar {
    width: 100%;
}

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

.nav-logo span {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    letter-spacing: 1px;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4285f4;
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #333;
    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: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-button {
    background: white;
    color: #4285f4;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Content Sections */
.guide-section,
.investment-section,
.diversification-section,
.contact-section {
    padding: 80px 0;
}

.guide-section {
    background: #f8f9fa;
}

.guide-section h2,
.investment-section h2,
.diversification-section h2,
.contact-section h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.guide-section p,
.investment-section p,
.diversification-section p,
.contact-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #666;
}

.content-block {
    margin-bottom: 40px;
}

.content-block h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

/* Investment Visual */
.investment-visual {
    margin: 60px 0;
    text-align: center;
}

.investment-letters {
    font-size: 72px;
    font-weight: bold;
    color: #333;
    letter-spacing: 8px;
    background: linear-gradient(45deg, #8B4513, #D2691E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Strategy List */
.strategy-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.strategy-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.strategy-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #4285f4;
}

/* Person Image */
.person-image {
    text-align: center;
    margin: 40px 0;
}

.placeholder-person {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #333, #666);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

/* Diversification Benefits */
.diversification-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.benefit-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

/* Contact Form */
.contact-section {
    background: #f8f9fa;
}

.contact-form {
    max-width: 500px;
    margin: 40px auto 0;
}

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

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #4285f4;
}

.submit-btn {
    width: 100%;
    background: #333;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #555;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4285f4;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-about {
    border-top: 1px solid #555;
    padding-top: 30px;
}

.footer-about h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 20px;
}

/* Thank You Page */
.thank-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.thank-container {
    text-align: center;
    padding: 60px 20px;
}

.thank-brand h1 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.thank-message h2 {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
}

.return-btn {
    background: #4285f4;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.return-btn:hover {
    background: #3367d6;
    transform: translateY(-2px);
}

.thank-footer {
    margin-top: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .investment-letters {
        font-size: 48px;
        letter-spacing: 4px;
    }

    .strategy-list,
    .diversification-benefits {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cookie-content {
        padding: 30px 20px;
        margin: 10px;
        border-radius: 8px;
    }

    .cookie-content h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .cookie-content p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .cookie-buttons {
        justify-content: center;
        gap: 15px;
    }

    .btn-cookie-settings,
    .btn-accept-all {
        padding: 12px 20px;
        font-size: 14px;
        min-width: 160px;
    }

    .thank-message h2 {
        font-size: 36px;
    }

    .thank-brand h1 {
        font-size: 16px;
    }
}

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

    .hero-content h1 {
        font-size: 28px;
    }

    .guide-section,
    .investment-section,
    .diversification-section,
    .contact-section {
        padding: 60px 0;
    }

    .investment-letters {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .thank-message h2 {
        font-size: 28px;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-cookie-settings,
    .btn-accept-all {
        width: 100%;
        text-align: center;
        padding: 12px 15px;
        font-size: 14px;
    }

    .cookie-content {
        margin: 15px 10px;
        padding: 25px 15px;
    }

    .cookie-content h2 {
        font-size: 20px;
    }

    .cookie-content p {
        font-size: 13px;
    }
}