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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #8B3F99;
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

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

.btn-accept, .btn-decline {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background: white;
    color: #8B3F99;
}

.btn-decline {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-accept:hover {
    background: #f0f0f0;
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Header */
.header {
    background: #8B3F99;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.header-brand {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
    background: #f8f9fa;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.hero-image {
    margin: 40px 0;
}

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

.hero-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subdescription {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: #8B3F99;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #7A3686;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 60px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 20px;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #8B3F99;
    line-height: 1.4;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.about-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: white;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.reason-item {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
}

.reason-number {
    font-size: 24px;
    font-weight: 700;
    color: #8B3F99;
    margin-bottom: 10px;
}

.reason-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #8B3F99;
    margin-bottom: 15px;
    line-height: 1.3;
}

.reason-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Join Us Section */
.join-us {
    padding: 80px 0;
    background: #f8f9fa;
}

.join-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.join-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.join-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B3F99;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

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

.submit-button:hover {
    background: #7A3686;
}

/* Footer */
.footer {
    background: #8B3F99;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    text-align: center;
    margin-bottom: 30px;
}

.footer-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

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

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

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

.footer-links a:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .about-content,
    .join-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .reason-item,
    .feature-card {
        padding: 20px 15px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}