/* Styles généraux */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #d23b68;
}

a {
    color: #d23b68;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #a12e52;
}

section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

/* Header */
header {
    text-align: center;
    padding: 40px 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.tagline {
    font-style: italic;
    color: #777;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://via.placeholder.com/1200x600') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

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

/* Product Section */
.product {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    background-color: #fff;
    padding: 60px 20px;
}

.product-info {
    flex: 1;
    min-width: 300px;
}

.product-info h2 {
    margin-bottom: 20px;
}

.description {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.features {
    list-style-type: none;
    margin-bottom: 30px;
}

.features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d23b68;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d23b68;
    margin-top: 20px;
}

.product-image {
    flex: 1;
    min-width: 300px;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #777;
    font-style: italic;
}

.product-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
    background-color: #fff;
    text-align: center;
}

.about h2 {
    margin-bottom: 30px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.about-text {
    max-width: 600px;
}

.about-text p {
    margin-bottom: 20px;
}

/* Contact Section */
.contact {
    background-color: #fff;
    text-align: center;
}

.contact h2 {
    margin-bottom: 20px;
}

.contact > p {
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-method {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    background-color: #f9f2f4;
    border-radius: 8px;
}

.contact-method h3 {
    margin-bottom: 10px;
}

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

.contact-form h3 {
    margin-bottom: 20px;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
}

.btn {
    background-color: #d23b68;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #a12e52;
}

/* FAQ Section */
.faq {
    background-color: #fff;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: 1px solid #eee;
}

.faq-item h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    padding: 10px 15px;
    background-color: #f9f2f4;
    border-radius: 5px;
}

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

footer p {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .product {
        flex-direction: column;
    }
    
    .product-info, .product-image {
        width: 100%;
    }
    
    .image-placeholder {
        height: 300px;
    }
    
    section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .contact-method {
        width: 100%;
    }
}
