/* Import des polices Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #2e7d32;
    --secondary-color: #43a047;
    --accent-color: #00695c;
    --text-color: #1a1a1a;
    --text-color-light: #2d2d2d;
    --light-bg: #f1f8e9;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --spacing: 2rem;
}

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

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing);
}

/* Header */
header {
    background: var(--white);
    color: var(--text-color);
    padding: 4rem 0;
    text-align: center;
    box-shadow: var(--shadow);
}

header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

header .subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color-light);
}

/* Navigation */
nav {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

nav ul li a {
    display: block;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s;
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

/* Sections */
.section {
    padding: var(--spacing) 0;
    position: relative;
}

.section:nth-child(even) {
    background-color: var(--light-bg);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section h3 {
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem;
}

/* Features Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing);
    margin: 3rem 0;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-item {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    opacity: 0.8;
}

.feature-item h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    font-weight: 600;
}

.feature-item p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-color);
    flex-grow: 1;
    text-align: justify;
    hyphens: auto;
    word-spacing: -0.05em;
    font-weight: 400;
}

.feature-item p {
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    lang: fr;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: var(--white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
    font-family: 'Outfit', sans-serif;
}

.btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Contact Form */
form {
    max-width: 600px;
    margin: 0 auto;
}

form label {
    display: block;
    margin-top: 1rem;
}

form input,
form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-top: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

form button {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: var(--spacing) 0;
}

footer nav {
    background: none;
    box-shadow: none;
    position: static;
}

footer nav ul {
    justify-content: center;
    flex-wrap: wrap;
}

footer nav ul li a {
    color: white;
    opacity: 0.8;
    padding: 0.5rem 1rem;
}

footer nav ul li a:hover {
    opacity: 1;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-grid {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
} 

/* Nouveau style pour le lien de contact */
.contact-info {
    text-align: center;
    padding: 2rem 0;
}

.contact-link {
    display: inline-block;
    color: var(--accent-color);
    font-size: 1.5rem;
    text-decoration: none;
    padding: 1.2rem 3rem;
    border: 3px solid var(--accent-color);
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
    background: var(--white);
    box-shadow: var(--shadow);
    font-family: 'Outfit', sans-serif;
}

.contact-link:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
} 

/* Ajoutez ces styles pour les listes */
ul {
    padding-left: 2rem;  /* Ajoute un padding à gauche pour les puces */
    margin: 1rem 0;      /* Ajoute une marge verticale */
}

ul li {
    margin-bottom: 0.5rem;  /* Espace entre les éléments de la liste */
    list-style-position: outside;  /* Force les puces à l'extérieur */
} 

/* Logo styling */
.main-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 2rem;
} 

/* Pricing Section */
.pricing-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.pricing-header {
    margin-bottom: 2rem;
}

.price {
    margin: 1.5rem 0;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.period {
    font-size: 1.2rem;
    color: var(--text-color-light);
}

.original-price {
    color: #666;
    text-decoration: line-through;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.pricing-features {
    margin: 2rem 0;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.highlight-text {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    font-weight: 500;
    color: var(--accent-color);
} 