:root {
    --primary: #E85A4F;
    --primary-dark: #D64A3F;
    --primary-light: #F5B895;
    --secondary: #8E8D8A;
    --accent: #E98074;
    --light: #EAE7DC;
    --dark: #2D3436;
    --cream: #FDF8F5;
    --gradient-warm: linear-gradient(135deg, #E85A4F 0%, #E98074 50%, #F5B895 100%);
    --gradient-dark: linear-gradient(135deg, #2D3436 0%, #4A5568 100%);
    --shadow-soft: 0 10px 40px rgba(232, 90, 79, 0.15);
    --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.08);
    --radius: 20px;
    --radius-lg: 30px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Sora', sans-serif;
    color: var(--dark);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.7;
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.display-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.text-gradient {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.navbar.navbar-dark-header {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.navbar.navbar-dark-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary) !important;
    letter-spacing: -0.5px;
}

.navbar-brand span {
    color: var(--dark);
}

.nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

/* Navbar sur header sombre (pages internes) */
.navbar-dark-header .navbar-brand {
    color: white !important;
}

.navbar-dark-header .navbar-brand span {
    color: rgba(255, 255, 255, 0.8);
}

.navbar-dark-header .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.navbar-dark-header .nav-link:hover,
.navbar-dark-header .nav-link.active {
    color: white !important;
}

.navbar-dark-header .nav-link::after {
    background: white;
}

.navbar-dark-header .hamburger span {
    background: white;
}

/* Quand scrollé, revenir au style normal */
.navbar-dark-header.scrolled .navbar-brand {
    color: var(--primary) !important;
}

.navbar-dark-header.scrolled .navbar-brand span {
    color: var(--dark);
}

.navbar-dark-header.scrolled .nav-link {
    color: var(--dark) !important;
}

.navbar-dark-header.scrolled .nav-link:hover,
.navbar-dark-header.scrolled .nav-link.active {
    color: var(--primary) !important;
}

.navbar-dark-header.scrolled .nav-link::after {
    background: var(--primary);
}

.navbar-dark-header.scrolled .hamburger span {
    background: var(--dark);
}

/* Offcanvas */
.offcanvas {
    background: var(--cream);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.offcanvas-body .nav-link {
    font-size: 1.2rem;
    padding: 1rem 0 !important;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.offcanvas-body .nav-link::after {
    display: none;
}

.btn-close:focus {
    box-shadow: none;
}

/* Hamburger */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary-custom {
    background: var(--gradient-warm);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-soft);
}

.btn-primary-custom:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(232, 90, 79, 0.3);
    color: white;
}

.btn-outline-custom {
    border: 2px solid var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    transition: all 0.4s ease;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.btn-white {
    background: white;
    color: var(--primary);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    color: var(--primary);
}

/* Page Header */
.page-header {
    background: var(--gradient-warm);
    color: white;
    padding: 10rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: blob 20s ease-in-out infinite;
    pointer-events: none;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-badge {
    display: inline-block;
    background: rgba(232, 90, 79, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--secondary);
    font-size: 1.1rem;
    max-width: 600px;
}

/* Cards */
.service-card {
    background: white;
    border-radius: var(--radius);
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-warm);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
    color: inherit;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(232, 90, 79, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--gradient-warm);
    transform: rotate(-5deg) scale(1.1);
}

.service-card:hover .service-icon i {
    color: white;
}

.service-icon i {
    color: var(--primary);
    transition: color 0.4s ease;
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--secondary);
    font-size: 0.95rem;
    margin: 0;
}

.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Service Detail */
.service-detail-header {
    padding: 10rem 0 4rem;
    background: var(--cream);
}

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

.service-benefits {
    list-style: none;
    padding: 0;
}

.service-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: var(--radius);
}

.service-benefits li i {
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-benefits li h5 {
    margin-bottom: 0.3rem;
}

.service-benefits li p {
    color: var(--secondary);
    margin: 0;
    font-size: 0.95rem;
}

/* FAQ Accordion */
.faq-section {
    background: white;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--radius) !important;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem 2rem;
    background: white;
    color: var(--dark);
}

.accordion-button:not(.collapsed) {
    background: var(--cream);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E85A4F'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem 2rem;
    color: var(--secondary);
    line-height: 1.8;
}

/* Testimonials */
.testimonials-section {
    background: var(--dark);
    color: white;
}

.testimonials-section .section-badge {
    background: rgba(232, 90, 79, 0.2);
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-info h5 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.testimonial-info span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.testimonial-stars {
    color: #FFB800;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
}

.rating-summary {
    background: var(--gradient-warm);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rating-summary .big-number {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rating-summary .stars {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.rating-summary .count {
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Contact */
.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-warm);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-content h5 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.contact-info-content p {
    color: var(--secondary);
    margin: 0;
    font-size: 0.95rem;
}

.contact-form {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 2.5rem;
}

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

.form-grid .full-width {
    grid-column: 1 / -1;
}

@media (max-width: 767px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-control, .form-select {
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(232, 90, 79, 0.1);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

/* Captcha */
.captcha-container {
    background: white;
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.dice-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 2.5rem;
    line-height: 1;
}

.dice-plus {
    font-size: 1.5rem;
    color: var(--secondary);
}

.dice-equals {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-left: 0.5rem;
}

.captcha-input {
    width: 80px !important;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.captcha-refresh {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.captcha-refresh:hover {
    transform: rotate(180deg);
}

.btn-submit {
    background: var(--gradient-warm);
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(232, 90, 79, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Alert */
.alert-contact {
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    display: none;
}

.alert-contact.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-warm);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -50%;
    width: 200%;
    height: 300%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-section .btn-white {
    position: relative;
    z-index: 2;
}

/* Zones */
.zone-tag {
    display: inline-block;
    background: white;
    color: var(--dark);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0.3rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.zone-tag:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.zone-tag.main {
    background: var(--gradient-warm);
    color: white;
    font-weight: 600;
}

/* About Page */
.about-section {
    background: white;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: var(--gradient-warm);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.875rem;
    opacity: 0.9;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.about-list li i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-warm);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 5px;
    width: 13px;
    height: 13px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--cream);
}

.timeline-item h5 {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.timeline-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: var(--secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-brand span {
    color: var(--primary);
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact i {
    color: var(--primary);
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
}

/* Animations */
@keyframes blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -50px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(40px, 30px) scale(1.05); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Spinner */
.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-submit.loading .spinner {
    display: inline-block;
}

.btn-submit.loading .btn-text {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 991px) {
    .page-header {
        padding: 8rem 0 4rem;
    }
}

@media (max-width: 767px) {
    section {
        padding: 4rem 0;
    }

    .experience-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 1rem;
        display: inline-block;
    }

    .captcha-container {
        flex-direction: column;
        text-align: center;
    }
}
