:root {
    --primary: #1e88e5;
    --primary-dark: #1565c0;
    --secondary: #26a69a;
    --light: #f5f5f5;
    --dark: #212121;
    --grey: #757575;
    --light-grey: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
}

.logo img {
    height: 40px;
    vertical-align: middle;
    margin-right: 8px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--secondary);
}

.btn-secondary:hover {
    background-color: #00897b;
}

.hero {
    padding: 160px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--grey);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.demo-image {
    max-width: 480px;
    width: 80%;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.features {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-title p {
    color: var(--grey);
    max-width: 700px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background-color: var(--light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.demo {
    padding: 80px 0;
    text-align: center;
}

footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: var(--light-grey);
    margin-bottom: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-grey);
}

/* Styles pour le formulaire d'inscription */
.registration {
    padding: 140px 0 80px;
}

.form-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.form-title {
    text-align: center;
    margin-bottom: 30px;
}

.form-title h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-title p {
    color: var(--grey);
}

.form-section {
    margin-bottom: 30px;
}

.form-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light-grey);
    color: var(--primary);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1 1 280px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--light-grey);
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(30, 136, 229, 0.2);
    outline: none;
}

.required::after {
    content: " *";
    color: #e53935;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.form-note {
    font-size: 0.9rem;
    color: var(--grey);
    margin-top: 20px;
    text-align: center;
}

/* Styles pour la page de confirmation */
.confirmation {
    padding: 160px 0 80px;
    text-align: center;
}

.confirmation-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
}

.confirmation h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.confirmation p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--grey);
}

.btn-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.demo-credentials {
    background-color: rgba(38, 166, 154, 0.1);
    border-left: 4px solid var(--secondary);
    padding: 15px 20px;
    margin: 30px auto;
    max-width: 500px;
    border-radius: 4px;
    font-style: italic;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    line-height: 1.8;
}

.demo-credentials strong {
    color: var(--secondary);
    font-weight: 600;
}


        /* Modern Table Styles */
        .modern-table {
            width: 100%;
            border-collapse: separate; /* Use 'separate' for rounded corners */
           
            margin-bottom: 20px;
            border-spacing: 0;  /* Required for border-radius on cells to work */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
            border-radius: 12px; /* Rounded corners for the whole table */
            overflow: hidden; /* Hide overflow for consistent border-radius */
        }

        .modern-table th, .modern-table td {
            padding: 12px 16px;
            text-align: left;
            border: none; /* Remove individual cell borders */
        }

        .modern-table th {
            background-color: #343a40;  /* Dark header background */
            color: white;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .modern-table tbody tr:nth-child(even) {
            background-color: #f8f9fa; /* Light gray for even rows */
        }

        .modern-table tbody tr:hover {
            background-color: #e9ecef; /* Slightly darker gray on hover */
            transition: background-color 0.2s ease-in-out;
        }

        .modern-table .right {
            color: #28a745;  /* Green color for success */
        }

        .modern-table .wrong {
            color: #dc3545;  /* Red color for error */
        }

        .modern-table .center {
            text-align: center;
        }

        /* Responsive adjustments (you may need to adapt these) */
        @media (max-width: 768px) {
            .modern-table {
                width: 100%;
                margin-left: 0;
                box-shadow: none; /* Remove shadow on smaller screens */
            }

            .modern-table th, .modern-table td {
                padding: 8px 12px;
                font-size: 0.9em;
            }
        }






/* Styles responsives */
@media (max-width: 768px) {
    .hero {
        padding: 140px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .header-container {
        flex-direction: column;
        padding: 20px;
    }
    
    .nav-links {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .btn-row {
        flex-direction: column;
    }
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: var(--light);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: white;
    border: 1px solid var(--primary);
    border-radius: 10px;
    width: 300px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.pricing-header {
    margin-bottom: 20px;
}

.pricing-icon {
    font-size: 30px;
    color: var(--primary);
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 10px 0;
}

.pricing-price p {
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark);
    margin: 0;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--grey);
}

.tax-info {
    font-size: 0.9rem;
    color: var(--grey);
    margin: 5px 0 15px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    font-size: 1rem;
    color: var(--dark);
    margin: 10px 0;
}

.pricing-features li i {
    color: #28a745; /* Green color for checkmarks, consistent with other success indicators */
    margin-right: 8px;
}

/* Responsive adjustments for pricing section */
@media (max-width: 768px) {
    .pricing {
        padding: 60px 0;
    }

    .pricing-grid {
        gap: 20px;
    }

    .pricing-card {
        width: 100%;
        max-width: 340px;
    }
}