:root {
    --primary-color: #4CAF50;
    --secondary-color: #2c3e50;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --border-radius: 8px;
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Navigation */
.main-nav {
    background: var(--secondary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
}

.menu li {
    position: relative;
}

.menu a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
}

.has-submenu {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--secondary-color);
    min-width: 250px;
    padding: 0.5rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border-radius: 4px;
}

.has-submenu:hover .submenu {
    display: block;
}

.submenu li {
    margin: 0;
}

.submenu a {
    padding: 0.5rem 1rem;
    color: white;
    opacity: 0.9;
}

.submenu a:hover {
    background: rgba(255,255,255,0.1);
    opacity: 1;
}

/* Sous-menus */
/*.submenu {*/
/*    position: absolute;*/
/*    top: 100%;*/
/*    left: 0;*/
/*    background: var(--secondary-color);*/
/*    min-width: 250px;*/
/*    list-style: none;*/
/*    padding: 0.5rem 0;*/
/*    margin: 0;*/
/*    border-radius: 0 0 var(--border-radius) var(--border-radius);*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*    transform: translateY(-10px);*/
/*    transition: all 0.3s ease;*/
/*    z-index: 1000;*/
/*}*/

/*.has-submenu:hover .submenu {*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*    transform: translateY(0);*/
/*}*/

/*.submenu a {*/
/*    padding: 0.5rem 1.5rem;*/
/*    font-size: 0.95rem;*/
/*}*/

/*.submenu a:hover {*/
/*    background: rgba(255,255,255,0.15);*/
/*}*/

/* Mobile responsive */
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0,0,0,0.1);
        display: none;
    }

    .has-submenu:hover .submenu {
        display: block;
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-container {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.main-logo {
    height: 50px;
    width: auto;
}

.supported-by {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #666;
}

.support-logo {
    height: 30px;
    width: auto;
}

/* Styles pour les listes avec crochets - uniquement pour le contenu, pas le menu */
.page-content ul li::before {
    content: "✓";
    color: #4CAF50;
    display: inline-block;
    margin-right: 10px;
    font-weight: bold;
}

.page-content ul.erreurs li::before {
    content: "✗";
    color: #f44336;
}

.contact-info {
    text-align: right;
}

.phone-label {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.phone-number {
    font-size: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('attached_assets/image_1747493164080.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 0;
}

.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../attached_assets/image_1747513052665.png') no-repeat center center;
    background-size: cover;
    padding: 60px 0;
    color: white;
}

.conseils-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../attached_assets/image_1747525917540.png') no-repeat center center;
    background-size: cover;
    padding: 60px 0;
    color: white;
}

.loi25-hero {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../attached_assets/image_1747514636287.png');
    background-position: center 35%;
    background-size: cover;
    padding: 8rem 0;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.intro-section {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.intro-section .main-title {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.intro-section .subtitle {
    color: #34495e;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.context-box {
    background: white;
    padding: 1.5rem;
    border-left: 4px solid #3498db;
    margin-bottom: 2rem;
    border-radius: 0 4px 4px 0;
}

.context-box p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #2c3e50;
}

.key-points {
    background: #ebf5fb;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.key-points p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1.1rem;
    color: #2c3e50;
}

.important-note {
    font-size: 1.2rem;
    color: #e74c3c;
    font-weight: 500;
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.hero-flex {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.quick-contact-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    width: 400px;
    color: var(--text-color);
}

.quick-contact-card h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.quick-phone {
    display: block;
    text-align: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.quick-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-form input,
.quick-form select {
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-section {
    margin-top: 2rem;
}

.testimonials-title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.95);
    padding: 1.5rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    width: 100%;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
    min-height: 140px;
    margin: 0 auto;
}

.testimonial-text {
    color: #ffffff;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-align: left;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.testimonial-author-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.testimonial-author {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    flex: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.testimonial-card .stars {
    color: #FFD700;
    font-size: 1.3rem;
    flex-shrink: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-10px); }
}

.testimonial-fade-out {
    animation: fadeOut 0.5s ease-in-out forwards;
}

@media (max-width: 992px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .quick-contact-card {
        width: 100%;
        max-width: 500px;
    }
    
    .testimonials-section {
        margin-top: 2rem;
        text-align: center;
    }
    
    .testimonial-card {
        margin: 0 auto;
        max-width: 500px;
    }
    
    .testimonial-author-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--secondary-color);
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 1rem auto 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.read-more {
    margin-top: 1rem;
    color: #0097FB;
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

/* Free Tools Section */
.free-tools {
    padding: 4rem 0;
    background: var(--light-gray);
}

.section-description {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
}

.tool-content {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tool-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    width: 100%;
}

.tool-content p {
    color: #666;
    margin-bottom: 1.5rem;
    width: 100%;
}

.download-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: background 0.3s ease;
}

.download-btn:hover {
    background: var(--secondary-color);
}

/* Contact Form */
.contact-form {
    padding: 4rem 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.form-container h2 {
    margin-bottom: 40px;
    color: #333;
    text-align: center;
    font-size: 28px;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

input, select, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

textarea {
    height: 120px;
    resize: vertical;
}

.consent-box {
    margin-bottom: 0.8rem;
    display: flex;
    gap: 0.4rem;
    align-items: flex-start;
}

.consent-box input[type="checkbox"] {
    width: auto;
    margin: 0.3rem 0 0 0;
}

.consent-box label {
    font-size: 0.8rem;
    line-height: 1.3;
    color: #888;
}

.consent-box a {
    color: var(--primary-color);
    text-decoration: none;
}

.consent-box a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: white;
}

/* Hero Banner */
.hero-banner {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.banner-overlay {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.banner-overlay {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.table-responsive {
    overflow-x: auto;
    margin: 20px 0;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
}

.legal-table th,
.legal-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #ddd;
}

.legal-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.legal-table tr:hover {
    background-color: #f5f5f5;
}

.note {
    font-style: italic;
    color: #666;
    margin: 15px 0;
}

/* Page Content */
.page-content {
    padding: 3rem 0;
}

.page-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.page-content .table-note {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
}

.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
}

.leave-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.leave-table th,
.leave-table td {
    padding: 1rem;
    border: 1px solid #ddd;
    text-align: left;
}

.leave-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.leave-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.table-note {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    margin-top: 1rem;
}

.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

th, td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #eee;
}

th {
    background: var(--light-gray);
    color: var(--text-color);
}

tr:nth-child(even) {
    background: #f9f9f9;
}

.page-content {
    padding: 4rem 0;
    background: white;
}

.page-content h1 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.page-content {
    padding: 4rem 0;
    background: white;
}

.page-content .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-content .main-title {
    color: var(--secondary-color);
    font-size: 2.4rem;
    text-align: center;
    margin: 2rem 0;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.page-content h2 {
    color: var(--secondary-color);
    font-size: 2.2rem;
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}

.page-content h3 {
    color: var(--secondary-color);
    font-size: 1.7rem;
    margin: 2.5rem 0 1.2rem;
}

.page-content p {
    max-width: 800px;
    margin: 0 0 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
}

.page-content ul {
    max-width: 800px;
    margin: 1.5rem 0;
    padding-left: 1.2rem;
}

.page-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    padding-left: 0;
    list-style-type: none;
    text-align: left;
}

.page-content li strong {
    color: var(--secondary-color);
}

.page-content .key-points {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.page-content .point {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.banner-subtitle {
    font-size: 1.3rem;
    color: white;
    text-align: center;
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    z-index: 2;
}

.banner-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    z-index: 1;
}

.page-content ul {
    max-width: 800px;
    margin: 1rem auto;
    padding-left: 2rem;
}

.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

tr:hover {
    background: #f9f9f9;
}

.cta-section {
    background: var(--light-gray);
    padding: 3rem;
    margin: 3rem 0;
    border-radius: var(--border-radius);
    text-align: left;
}

.cta-section h3,
.cta-section .cta-buttons {
    text-align: center;
}

.cta-section .cta-buttons {
    margin-top: 2rem;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    padding: 3rem 0 2rem;
    color: white;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-legal {
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .quick-contact-card {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-info {
        text-align: center;
    }

    .form-group {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .service-grid, .tools-grid {
        grid-template-columns: 1fr;
    }

    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--secondary-color);
        flex-direction: column;
        padding: 1rem 0;
    }

    .menu.active {
        display: block;
    }

    .submenu {
        position: static;
        width: 100%;
        display: none;
        padding-left: 2rem;
    }

    .has-submenu:hover .submenu {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .banner-title {
        font-size: 1.8em;
    }

    .btn {
        width: 100%;
    }

    .phone-number {
        font-size: 1.2rem;
    }
}

/* Add your styles here */
/* Styles pour la politique de confidentialité */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    line-height: 1.6;
}

.page-header {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.header-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.header-overlay {
    position: relative;
}

.header-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 8px;
    width: 80%;
}

.content-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.policy-list {
    list-style-type: none;
    padding-left: 0;
}

.policy-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.policy-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
}

.intro-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #333;
}

.section-title {
    color: #1a4f72;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.security-measures {
    background: #f8f9fa;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.security-measures li {
    margin-bottom: 1rem;
}

.important-notice {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin: 1.5rem 0;
}

.rights-section ul {
    list-style-type: none;
    padding-left: 0;```text

.rights-section li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.rights-section li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
}

.contact-info {
    background: #e9ecef;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.policy-dates {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
    font-size: 0.9rem;
    color: #6c757d;
}

.emergency-form {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

.emergency-form .form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.emergency-form h2 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.emergency-form .form-group {
    margin-bottom: 1.5rem;
}

.emergency-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #34495e;
    font-weight: 500;
}

.emergency-form input,
.emergency-form select,
.emergency-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.emergency-form input:focus,
.emergency-form select:focus,
.emergency-form textarea:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
    outline: none;
}

.emergency-form textarea {
    min-height: 150px;
}

.emergency-form .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.emergency-form .btn-primary:hover {
    background: #43A047;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.emergency-form .consent-box {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.emergency-form .alert {
    color: #FF0000;
    text-align: center;
    font-weight: 900;
    padding: 1.5rem;
    margin-bottom: 4rem;
    background: #fff5f5;
    border-radius: 8px;
    border: 2px solid #FF0000;
    font-size: 1.4em;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.1);
}