body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f0f2f5;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #002b36;
    color: white;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

.btn {
    margin-left: 10px;
    padding: 10px 20px;
    background-color: #008fd5;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #005f73;
}

.hero {
    text-align: center;
    padding: 50px;
    background-color: #ffffff;
    color: #002b36;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.features {
    padding: 50px;
    text-align: center;
    background-color: #f0f2f5;
}

.features h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #002b36;
}

.features p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #002b36;
    color: white;
}

.cta {
    padding: 15px 30px;
    background-color: #008fd5;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s;
}

.cta:hover {
    background-color: #005f73;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #008fd5;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.auto-renewal-text {
    margin-left: 10px;
    font-weight: bold;
    color: #333; /* Couleur noire par défaut */
}

.auto-renewal-text.active {
    color: green;
}

.auto-renewal-text.inactive {
    color: red;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .btn {
        margin: 10px 0;
    }

    .hero, .features {
        padding: 30px;
    }
}
