/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.header {
    background-color: #FF6F61; /* Couleur chaude */
    color: #fff;
    padding: 20px 0;
}

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

.header .nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.header .nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.header .nav ul li a:hover {
    color: #FFD166; /* Couleur chaude */
}

/* Hero Section */
.hero {
    background-color: #FFD166; /* Couleur chaude */
    color: #333;
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

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

.hero .cta-button {
    background-color: #FF6F61; /* Couleur chaude */
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.hero .cta-button:hover {
    background-color: #FF4A3D; /* Couleur chaude plus foncée */
}

/* Features Section */
.features {
    padding: 80px 0;
    text-align: center;
}

.features h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 16px;
    color: #666;
}

/* About Section */
.about {
    background-color: #FFE8E5; /* Couleur chaude claire */
    padding: 80px 0;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
    color: #666;
}

/* CTA Section */
.cta {
    background-color: #FF6F61; /* Couleur chaude */
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta .cta-button {
    background-color: #FFD166; /* Couleur chaude */
    color: #333;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.cta .cta-button:hover {
    background-color: #FFC04D; /* Couleur chaude plus foncée */
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer a {
    color: #FF6F61; /* Couleur chaude */
    text-decoration: none;
}

.footer a:hover {
    color: #FFD166; /* Couleur chaude */
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .nav ul {
        flex-direction: column;
        align-items: center;
    }

    .hero h2 {
        font-size: 28px;
    }

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

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .features h2, .about h2, .cta h2 {
        font-size: 28px;
    }
}
