#box-price {
    display: none; /* Hide the element by default */
}


.box-details-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.box-details-table th, .box-details-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.box-details-table th {
    background-color: #f4f4f4;
    color: #333;
}

.box-details-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.box-details-table tr:hover {
    background-color: #f1f1f1;
}

/* Style personnalisé pour le sélecteur de boîte */
.pricing-Box {
    margin: 20px 0;
}

.form-label {
    font-weight: bold;
    margin-bottom: 10px;
}

.form-control {
    border-radius: 0.25rem; /* Ajuste les coins du sélecteur */
    box-shadow: none; /* Retire l'ombre par défaut */
}


/* Hero section base styles */
.hero {
    background: url('hero-background.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 4em 0;
    position: relative; /* Added for potential positioning */
    width: 100%; /* Ensures full width */
}

/* Ensure hero content doesn't overflow on small screens */
.hero .hero-content {
    max-width: 90%; /* Slightly smaller max-width */
    margin: 0 auto;
    padding: 1em; /* Add padding for spacing */
}

.hero h1 {
    font-size: 2.5em; /* Base font size */
}

.hero p {
    font-size: 1.2em; /* Base font size */
    margin: 1em 0;
}

.cta-button {
    background-color: #14cb1e;
    color: #fff;
    padding: 0.5em 2em;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta2-button {
    background-color: #14cb1e;
    color: #fff;
    padding: 0.5em 2em;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #14cb1e;
}

/* Media Queries for Hero Section Responsiveness */

/* Tablets and smaller devices */
@media (max-width: 768px) {
    .hero {
        padding: 3em 0; /* Reduce padding */
    }

    .hero h1 {
        font-size: 2em; /* Smaller font size */
    }

    .hero p {
        font-size: 1em; /* Smaller font size */
    }
}

/* Mobile devices */
@media (max-width: 480px) {
    .hero {
        padding: 2em 0; /* Further reduce padding */
    }

    .hero h1 {
        font-size: 1.5em; /* Even smaller font size */
    }

    .hero p {
        font-size: 0.9em; /* Even smaller font size */
    }
}

/* Base styles for larger screens */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff7eb;
    color: #333;
    text-align: center;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1em 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

header .logo img {
    height: 50px;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1em;
}

header nav ul li {
    position: relative;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* Navigation toggle button */
.nav-toggle {
    display: none; /* Hidden by default */
    cursor: pointer;
    font-size: 1.5em;
    color: #fff;
}

/* Navigation menu for mobile */
.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.nav-menu.hidden {
    display: none;
}

/* Media Queries for Responsive Design */

/* Tablets and smaller devices */
@media (max-width: 768px) {
    header {
        padding: 1em 5%;
    }

    .plan-container {
        flex-direction: column;
        align-items: center;
    }

    .plan {
        width: 80%;
        margin-bottom: 1em;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .features, .advantages, .plans {
        padding: 2em 5%;
    }

    .footer-links, .footer-contact, .newsletter {
        flex: 1 100%;
        text-align: center;
    }

    .newsletter form {
        flex-direction: column;
    }

    .newsletter form input {
        margin-bottom: 0.5em;
    }

    /* Navigation for tablets and smaller devices */
    header nav {
        display: none; /* Hide default nav */
    }

    .nav-toggle {
        display: block; /* Show toggle button */
    }
}

/* Universal styles for responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Mobile devices */
@media (max-width: 480px) {
    header {
        padding: 1em 2%;
    }

    .plan-container {
        flex-direction: column;
        align-items: center;
    }

    .plan {
        width: 90%;
    }

    .hero h1 {
        font-size: 1.5em;
    }

    .hero p {
        font-size: 0.9em;
    }

    .features h2, .advantages h2, .plans h2 {
        font-size: 1.5em;
    }

    .features p, .plans p {
        font-size: 1em;
    }

    .footer-links, .footer-contact, .newsletter {
        flex: 1 100%;
        text-align: center;
    }

    .newsletter form {
        flex-direction: column;
    }

    .newsletter form input {
        margin-bottom: 0.5em;
    }

    .whatsapp-button {
        width: 40px;
        height: 40px;
        bottom: 10px;
        right: 10px;
    }

    .whatsapp-button img {
        width: 40px;
        height: 40px;
    }

    /* Mobile navigation adjustments */
    .nav-toggle {
        font-size: 1.2em; /* Smaller toggle icon */
    }

    .nav-menu {
        padding: 1em;
    }

    .nav-menu a {
        font-size: 1em;
    }
}
.plans {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 2em 10%;
    background-color: #fff;
    margin: 2em 0;
}

.plan {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 300px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.plan.basic {
    border-top: 10px solid #28a745; /* Green */
}

.plan.standard {
    border-top: 10px solid #007bff; /* Blue */
}

.plan-header {
    font-size: 1.5em;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px 10px 0 0;
}

.plan-header.personal {
    background-color: #ffcd40;
    color: #000;
}

.plan-header.business {
    background-color: #ff8c00;
    color: #fff;
}

.plan-header.expert {
    background-color: #ffcd40;
    color: #000;
}

.plan h2 {
    font-size: 1.8em;
    color: #333;
}

.plan .price {
    font-size: 2em;
    color: #007bff;
    margin: 0.5em 0;
}

.plan .details {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 1em;
}

.pricing h3 {
    font-size: 1.5em;
    color: #007bff;
    margin-top: 1em;
}

.pricing p {
    font-size: 1.2em;
}

.plan ul {
    list-style: none;
    padding: 0;
    margin: 1em 0;
}

.plan ul li {
    background-color: #fff;
    padding: 1em;
    margin: 0.5em 0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

footer {
    background-color: #333;
    color: #fff;
    padding: 2em 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links, .footer-contact, .newsletter {
    flex: 1;
    margin: 1em 0;
}

.footer-links a, .footer-contact a {
    color: #fff;
    text-decoration: none;
    margin-right: 1em;
}

.social-media a img {
    height: 30px;
    margin-right: 0.5em;
}

.pricing-option.hidden {
    display: none;
}

.pricing-buttons {
    margin-top: 10px;
}

.pricing-buttons button {
    padding: 10px;
    margin: 0 5px;
    cursor: pointer;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: 50px;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

.hero {
    background: url('hero-background.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 4em 0;
}

.hero .hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5em;
}

.hero p {
    font-size: 1.2em;
    margin: 1em 0;
}

.cta-button {
    background-color: #14cb1e;
    color: #fff;
    padding: 0.5em 2em;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta2-button {
    background-color: #14cb1e;
    color: #fff;
    padding: 0.5em 2em;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #14cb1e;
}

.features, .advantages, .plans {
    padding: 2em 10%;
    background-color: #fff;
    margin: 2em 0;
}

.features h2, .advantages h2, .plans h2 {
    font-size: 2em;
    margin-bottom: 1em;
}

.features p, .plans p {
    font-size: 1.2em;
    margin-bottom: 1em;
}

.features ul, .advantages ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.features ul li, .advantages ul li {
    background-color: #f4f4f4;
    padding: 1em;
    border-radius: 5px;
}

blockquote {
    background-color: #f4f4f4;
    padding: 1em;
    border-left: 5px solid #007BFF;
    margin: 1em 0;
    border-radius: 5px;
}

html {
    scroll-behavior: smooth;
}

.fade {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.fade.in {
    opacity: 1;
}

.section {
    position: relative;
    width: 100%;
    height: 100vh; /* Adjust based on your needs */
}

/* Media Queries for Responsive Design */

/* Tablets and smaller devices */
@media (max-width: 768px) {
    header {
        padding: 1em 5%;
    }

    .plan-container {
        flex-direction: column;
        align-items: center;
    }

    .plan {
        width: 80%;
        margin-bottom: 1em;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .features, .advantages, .plans {
        padding: 2em 5%;
    }

    .footer-links, .footer-contact, .newsletter {
        flex: 1 100%;
        text-align: center;
    }

    .newsletter form {
        flex-direction: column;
    }

    .newsletter form input {
        margin-bottom: 0.5em;
    }

    /* Navigation for tablets and smaller devices */
    header nav {
        display: none; /* Hide default nav */
    }

    .nav-toggle {
        display: block; /* Show toggle button */
    }
}

/* Universal styles for responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Mobile devices */
@media (max-width: 480px) {
    header {
        padding: 1em 2%;
    }

    .plan-container {
        flex-direction: column;
        align-items: center;
    }

    .plan {
        width: 90%;
    }

    .hero h1 {
        font-size: 1.5em;
    }

    .hero p {
        font-size: 0.9em;
    }

    .features h2, .advantages h2, .plans h2 {
        font-size: 1.5em;
    }

    .features p, .plans p {
        font-size: 1em;
    }

    .footer-links, .footer-contact, .newsletter {
        flex: 1 100%;
        text-align: center;
    }

    .newsletter form {
        flex-direction: column;
    }

    .newsletter form input {
        margin-bottom: 0.5em;
    }

    .whatsapp-button {
        width: 40px;
        height: 40px;
        bottom: 10px;
        right: 10px;
    }

    .whatsapp-button img {
        width: 40px;
        height: 40px;
    }

    /* Mobile navigation adjustments */
    .nav-toggle {
        font-size: 1.2em; /* Smaller toggle icon */
    }

    .nav-menu {
        padding: 1em;
    }

    .nav-menu a {
        font-size: 1em;
    }
}

ul li {
    display: flex;
    align-items: center;
}

ul li img.icon {
    width: 30px;  /* Adjust the size as needed */
    height: auto; /* Maintain the aspect ratio */
    margin-right: 8px;  /* Space between the icon and the text */
}

.container {
    padding: 20px;
}

h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

p {
    font-size: 1em;
    margin-bottom: 20px;
}

.hidden {
    display: none;
}

.pricing-box-option {
    display: none;
}

.pricing-box-option.active {
    display: block;
}

.plan-button, .plan-button2 {
    background-color: #ffcd40;
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.plan-button:hover, .plan-button2:hover {
    background-color: #ff8c00;
    color: #fff;
}
