/* Styles globaux */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* HEADER */
header {
    background-color: #333;
    color: white;
    padding: 40px;
    text-align: center;
}

header h1 {
    font-size: 36px;
}

header p {
    font-size: 18px;
}

header .cta-button {
    background-color: #e74c3c;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
}

header .cta-button:hover {
    background-color: #c0392b;
}

/* SECTION */
.section {
    padding: 40px;
    background-color: white;
    margin: 10px 0;
}

h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    font-size: 18px;
    margin-bottom: 10px;
}

.pricing-table {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.pricing-plan {
    background-color: #e2e2e2;
    padding: 20px;
    text-align: center;
    width: 250px;
    border-radius: 5px;
}

.pricing-plan h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.pricing-plan p {
    font-size: 22px;
    color: #e74c3c;
    margin-bottom: 20px;
}

.pricing-plan .cta-button {
    background-color: #333;
    color: white;
    padding: 10px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.pricing-plan .cta-button:hover {
    background-color: #555;
}

form {
    display: grid;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

form input, form textarea {
    padding: 10px;
    font-size: 16px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form .cta-button {
    background-color: #e74c3c;
    color: white;
    padding: 15px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
}

form .cta-button:hover {
    background-color: #c0392b;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}
