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

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

html {
    scroll-behavior: smooth;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, #6b2c91, #8b4cb8);
    border-radius: 15px;
    padding: 30px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content h3 {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.cookie-content p {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}

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

.cookie-mobile {
    display: none;
}

.btn-accept, .btn-accept-mobile {
    background: white;
    color: #6b2c91;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-accept:hover, .btn-accept-mobile:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.btn-settings, .btn-privacy, .btn-settings-mobile, .btn-privacy-mobile {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-settings:hover, .btn-privacy:hover, .btn-settings-mobile:hover, .btn-privacy-mobile:hover {
    background: white;
    color: #6b2c91;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: white;
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 18px;
    color: #333;
}

.star-icon {
    font-size: 20px;
    color: #6b2c91;
}

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

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

.nav-menu a:hover {
    color: #6b2c91;
}

.contact-btn {
    background: transparent;
    color: #333;
    border: 2px solid #333;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6b2c91, #8b4cb8);
    padding: 120px 0 80px;
    color: white;
    border-radius: 20px;
    margin: 80px 20px 40px;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.cta-btn {
    display: inline-block;
    background: white;
    color: #6b2c91;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

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

/* Investment Section */
.investment {
    background: linear-gradient(135deg, #6b2c91, #8b4cb8);
    padding: 80px 0;
    color: white;
    border-radius: 20px;
    margin: 40px 20px;
}

.investment .container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.investment-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.investment-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.investment-content {
    flex: 1;
    max-width: 600px;
}

.investment-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.investment-content p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.investment-content ul {
    list-style: none;
    margin: 20px 0;
}

.investment-content ul li {
    padding: 5px 0;
    font-size: 16px;
    opacity: 0.9;
}

/* Future Strategies Section */
.future-strategies {
    background: linear-gradient(135deg, #6b2c91, #8b4cb8);
    padding: 80px 0;
    color: white;
    border-radius: 20px;
    margin: 40px 20px 80px;
}

.future-strategies .container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.future-content {
    flex: 1;
    max-width: 600px;
}

.future-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.future-content p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.future-content ul {
    list-style: none;
    margin: 20px 0;
}

.future-content ul li {
    padding: 5px 0;
    font-size: 16px;
    opacity: 0.9;
}

.future-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.future-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.pricing-header p {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.pricing-card {
    background: white;
    border: 3px solid #6b2c91;
    border-radius: 15px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
}

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

.pricing-card.featured {
    background: linear-gradient(135deg, #6b2c91, #8b4cb8);
    color: white;
    border-color: #6b2c91;
}

.pricing-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #6b2c91;
}

.pricing-card.featured h3 {
    color: white;
}

.package-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
}

.pricing-card.featured .package-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card ul li {
    padding: 8px 0;
    font-size: 14px;
    color: #666;
}

.pricing-card.featured ul li {
    color: rgba(255, 255, 255, 0.9);
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #6b2c91;
    margin-bottom: 25px;
}

.pricing-card.featured .price {
    color: white;
}

.package-btn {
    display: inline-block;
    background: #6b2c91;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.package-btn:hover {
    background: #5a2478;
    transform: translateY(-2px);
}

.pricing-card.featured .package-btn {
    background: white;
    color: #6b2c91;
}

.pricing-card.featured .package-btn:hover {
    background: #f0f0f0;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #6b2c91, #8b4cb8);
    padding: 80px 0;
    color: white;
    border-radius: 20px;
    margin: 0 20px 40px;
}

.contact-section .container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-content {
    flex: 1;
    max-width: 500px;
}

.contact-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.contact-content p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-info {
    margin-top: 30px;
}

.contact-info p {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form {
    flex: 1;
    max-width: 500px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: white;
    color: #6b2c91;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #6b2c91, #8b4cb8);
    color: white;
    padding: 40px 0 20px;
    border-radius: 20px;
    margin: 0 20px 20px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 18px;
}

.footer-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.footer-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-menu a:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left p {
    font-size: 12px;
    opacity: 0.7;
}

.footer-right {
    display: flex;
    gap: 20px;
}

.footer-right a {
    font-size: 12px;
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-right a:hover {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .hero {
        margin: 100px 10px 20px;
        padding: 60px 0;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .investment,
    .future-strategies {
        margin: 20px 10px;
        padding: 60px 0;
    }
    
    .investment .container,
    .future-strategies .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .investment-content h2,
    .future-content h2 {
        font-size: 28px;
    }
    
    .contact-section {
        margin: 0 10px 20px;
        padding: 60px 0;
    }
    
    .contact-section .container {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-content h2 {
        font-size: 28px;
    }
    
    .footer {
        margin: 0 10px 10px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-menu {
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-header h2 {
        font-size: 28px;
    }

    /* Mobile Cookie Banner */
    .cookie-content {
        display: none;
    }
    
    .cookie-mobile {
        display: block;
    }
    
    .cookie-mobile h3 {
        color: white;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    
    .cookie-mobile p {
        color: white;
        font-size: 14px;
        margin-bottom: 20px;
        opacity: 0.9;
    }
    
    .cookie-buttons-mobile {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-banner {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .investment-content h2,
    .future-content h2,
    .contact-content h2 {
        font-size: 24px;
    }
    
    .pricing-header h2 {
        font-size: 24px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .hero,
    .investment,
    .future-strategies,
    .contact-section,
    .footer {
        margin-left: 5px;
        margin-right: 5px;
    }
}