/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3 {
    font-weight: 600;
}

.divider {
    width: 100px;
    height: 1px;
    background-color: #ccc;
    margin: 15px auto 20px;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #fff;
    position: relative;
    z-index: 100;
}

.logo {
    font-weight: 700;
    font-size: 18px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #333;
    font-size: 14px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #8675cf;
}

/* Hero Section */
.hero {
    background-image: url('./assets/bg.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero p {
    margin-bottom: 30px;
    font-size: 15px;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #333;
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: #8675cf;
    color: white;
}

/* Insights Section */
.insights {
    padding: 80px 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.insights h2 {
    font-size: 24px;
}

.insights p:first-of-type {
    font-weight: 500;
    margin-bottom: 15px;
}

/* Products Section */
.products {
    padding: 80px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.product-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.product-card {
    background-color: #8675cf;
    color: white;
    padding: 30px;
    width: 100%;
    max-width: 350px;
    text-align: left;
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.product-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 300;
}

.product-card p {
    font-size: 14px;
    margin-bottom: 20px;
}

.price {
    font-weight: 600;
    margin-top: auto;
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.faq-item {
    border: 1px solid #e0e0e0;
    padding: 20px;
    text-align: left;
    width: 100%;
    max-width: 500px;
}

.faq-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 14px;
}

/* Steps Section */
.steps {
    padding: 80px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    width: 100%;
    max-width: 250px;
    text-align: left;
}

.step h3 {
    font-size: 14px;
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
}

/* Image Section */
.image-section {
    margin: 0 auto;
    max-width: 1200px;
    padding: 20px;
}

.image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

/* Contact Form */
.contact {
    padding: 40px 20px;
    max-width: 500px;
    margin: 0 auto;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input {
    padding: 12px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
}

.submit-btn {
    background-color: #8675cf;
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #7665b0;
}

/* Footer */
footer {
    background-color: #f9f9f9;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 30px;
    height: 30px;
    background-color: #8675cf;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 300px;
    background-color: #8675cf;
    color: white;
    padding: 20px;
    text-align: center;
    z-index: 1000;
    display: none;
}

.cookie-popup h3 {
    margin-bottom: 10px;
}

.cookie-popup p {
    font-size: 13px;
    margin-bottom: 15px;
}

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

.cookie-popup button {
    background-color: white;
    color: #333;
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    font-size: 12px;
    transition: background-color 0.3s, color 0.3s;
}

.cookie-popup button:hover {
    background-color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px 20px;
    }
    
    nav ul {
        margin-top: 15px;
    }
    
    nav ul li {
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .product-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .footer {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .product-card, .faq-item, .step {
        max-width: 100%;
    }
}