:root {
    --primary-color: #2196f3;
    --text-color: #585858;
    --background-color: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito", sans-serif;

}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 0.3rem 1rem;
}

.navbar.scrolled {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 0.3rem 1rem;
}

#container {
    padding-left: 15px;
    padding-right: 15px;
}

.navbar-brand {
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.02);
}

.navbar-brand img {
    max-height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    max-height: 50px;
}

.navbar-nav {
    gap: 1rem;
}

.nav-link {
    color: #585858;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: all 0.3s ease;
}

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

.nav-link:hover {
    color: #2196f3;
}

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

.nav-link.active {
    color: #2196f3;
}

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

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    right: 10px;
    margin-right: 0;
}

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

.navbar-collapse {
    margin-top: 0;
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    width: 24px;
    height: 2px;
    background-color: #585858;
    left: 0;
}

.navbar-toggler-icon::before {
    top: 8px;
}

.navbar-toggler-icon::after {
    bottom: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 11px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 11px;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 10px;
        margin-top: 0.5rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        margin-left: 10px;
        margin-right: 10px;
    }

    .navbar-nav {
        gap: 0.5rem;
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 5px;
    }

    .nav-link:hover {
        background-color: rgba(33, 150, 243, 0.1);
    }

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

@media (max-width: 576px) {
    .navbar-brand img {
        max-height: 45px;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding-left: 0;
        padding-right: 0;
    }

    #container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .navbar-brand img {
        max-height: 45px;
        max-width: 200px;
    }

    .navbar-toggler {
        right: 5px;
        padding: 0.4rem;
    }
}

.hero {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(233, 240, 255, 0.4) 0%, transparent 70%);
    transform: rotate(-45deg);
}

.hero h1 {
    font-weight: 800;
    font-size: 3rem;
    line-height: 1.2;
    margin-top: 2rem;
    background: linear-gradient(135deg, #2196f3, #1976d2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h2 {
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.3;
    color: #333;
    margin-bottom: 1.5rem;
}

/*.hero p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}*/

.hashtag {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(33, 150, 243, 0.2);
    border-radius: 50px;
    color: #2196f3;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.1);
    transition: all 0.3s ease;
}

.hashtag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.15);
}

.download-btn {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.download-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

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

.announcement {
    background: #47b495;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.note {
    font-size: 15px;
    color: #666;
    margin-top: 15px;
}

.hero-image {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 991px) {
    .hero {
        padding: 60px 0;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .hero-image {
        margin-top: 3rem;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

.guide-utilisateur {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
}

.guide-utilisateur h1 {
    font-size: 2.5rem;
    color: #2196f3;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 800;
}

.guide-utilisateur h2 {
    font-size: 1.5rem;
    color: #1e40af;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guide-utilisateur p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #374151;
}

.step-container {
    background: #f3f4f6;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.image-container {
    background: white;
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 1.5rem 0;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    text-align: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 200px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.download-button {
    display: inline-block;
    background: #2196f3;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
    margin: 1rem 0;
}

.download-button:hover {
    background: #1e40af;
}

.important-note {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.conclusion {
    background: #dcfce7;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 2.5rem;
    text-align: center;
}

.emoji {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.features {
    background-color: var(--background-color);
    color: var(--text-color);
    padding: 80px 0;
}

.feature-box {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #64b5f6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-box img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.feature-box:hover img {
    transform: scale(1.1);
}

.feature-box h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-box p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
}

.gradient-text {
    color: #1976d2;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-card {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(100, 181, 246, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card img {
    max-width: 60px;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.service-card:hover img {
    transform: scale(1.1) rotate(5deg);
}

.service-card .card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.service-card .card-text {
    color: var(--text-color);
    opacity: 0.85;
    line-height: 1.7;
    font-size: 1rem;
}

.reveal-1,
.reveal-2 {
    opacity: 0;
    transform: translateY(30px);
    animation: revealContent 0.8s ease forwards;
}

.reveal-2 {
    animation-delay: 0.2s;
}

@keyframes revealContent {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .features {
        padding: 60px 0;
    }

    .feature-box,
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .gradient-text {
        font-size: 1.2rem;
    }

    .service-card .card-title {
        font-size: 1.2rem;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

#presentation-div {
    background-color: #eeeeee;
}

.service-card {
    background-color: var(--background-color);
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.service-card img {
    max-width: 50px;
    margin-bottom: 15px;
}

.service-card .card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.role-card {
    border-radius: 1rem;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: none;
}

.card-text {
    color: var(--text-color)
}

.role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.client-icon {
    background-color: #e3f2fd;
    color: #1976d2;
}

.provider-icon {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.section-header {
    position: relative;
    margin-bottom: 4rem;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #1976d2, #2e7d32);
    border-radius: 3px;
}

.role-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-list {
    margin-bottom: 2rem;
}

.partners-section {
    background: linear-gradient(to bottom right, #f8f9fa, #ffffff);
    padding: 5rem 0;
}

.section-title {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.badge {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #2196f3;
}

.partner-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    height: 170px;
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0);
}

.card-body1 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
}

.partner-logo {
    max-width: 80%;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-overlay {
    bottom: 0;
}

.partner-card:hover .partner-logo {
    transform: scale(0.9);
}

.partner-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.partner-description {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

@media (max-width: 768px) {
    .partner-card {
        height: 150px;
    }

    .partner-name {
        font-size: 1rem;
        font-weight: 600;
        margin: 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

.how-it-works {
    background: linear-gradient(to bottom right, #f8f9fa, #ffffff);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.badge {
    background: linear-gradient(45deg, #2d5eff 0%, #5b8dff 100%);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, #1a1a1a 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.text-gradient {
    background: linear-gradient(45deg, #2d5eff 0%, #5b8dff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.step-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(45deg, #2d5eff 0%, #5b8dff 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6ebff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-icon-wrapper i {
    font-size: 2rem;
    background: linear-gradient(45deg, #2d5eff 0%, #5b8dff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-features {
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.feature-item i {
    color: #2d5eff;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.feature-item span {
    color: #666;
    font-size: 0.95rem;
}

.step-card:hover .image-overlay {
    opacity: 1;
}

.step-card:hover .mockup-image {
    transform: scale(1.05);
}

.btn-gradient {
    background: linear-gradient(45deg, #2d5eff 0%, #5b8dff 100%);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(45, 94, 255, 0.2);
}

@media (max-width: 991.98px) {
    .section-title {
        font-size: 2.5rem;
    }

    .step-card {
        padding: 1.5rem;
    }
}

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

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

.cta {
    background: linear-gradient(135deg, #0057a3, #0095ff);
    padding: 60px 30px;
    border-radius: 20px;
    margin: 60px auto;
    max-width: 1200px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1140px;
    margin: 0 auto;
}

.cta-text {
    flex: 1;
    min-width: 300px;
}

.cta-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 30px;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.store-button img {
    height: 50px;
    transition: transform 0.3s ease;
}

.store-button:hover img {
    transform: scale(1.05);
}

.cta-qr {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-qr img {
    width: 120px;
    height: auto;
    border-radius: 10px;
}

.cta-image {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
}

.cta-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
    .cta {
        padding: 40px 20px;
        margin: 30px auto;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cta-text {
        max-width: 100%;
    }

    .cta-buttons {
        justify-content: center;
    }

    .cta-qr {
        justify-content: center;
    }

    .cta-image {
        min-width: 260px;
        max-width: 400px;
        margin: 0 auto;
    }

    .cta-image img {
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .cta {
        padding: 30px 15px;
    }

    .cta-image {
        min-width: 220px;
        margin: 0 auto;
    }

    .cta-image img {
        min-height: 280px;
    }

    .store-button img {
        height: 45px;
    }
}

.faq-section {
    background: linear-gradient(to bottom right, #f8f9fa, #ffffff);
    position: relative;
    padding: 5rem 0;
}

.badge.bg-soft-primary {
    background: rgba(45, 94, 255, 0.1);
    color: #2d5eff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

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

.custom-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 1rem;
}

.accordion-button {
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.accordion-button:not(.collapsed) {
    background: #ffffff;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-bottom: none;
    box-shadow: none;
}

.icon-wrapper {
    width: 40px;
    height: 40px;
    background: rgba(45, 94, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.icon {
    font-size: 1.2rem;
}

.button-text {
    font-weight: 600;
    color: #1a1a1a;
    flex: 1;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232d5eff' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232d5eff' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
    transform: rotate(0deg);
}

.accordion-body {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 1.5rem;
}

.accordion-body p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.help-text {
    color: #666;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #2d5eff, #5b8dff);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 94, 255, 0.2);
}

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

    .accordion-button {
        padding: 1rem;
    }

    .icon-wrapper {
        width: 32px;
        height: 32px;
    }

    .button-text {
        font-size: 0.9rem;
    }
}

.contact-info {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    height: 100%;
}

.contact-form-wrapper {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form {
    padding: 40px;
}

.section-title3 {
    color: #333;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.info-item {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}

.info-item i {
    color: #24a0cd;
    font-size: 24px;
    margin-right: 15px;
}

.contact-icon-wrapper {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.form-control {
    border: 1px solid #e0e0e0;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn-primary {
    padding: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.card {
    border-radius: 1rem;
    overflow: hidden;
}

.contact-info {
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .contact-info {
        margin-bottom: 2rem;
    }
}

.main-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.footer-top {
    padding: 4rem 0 3rem;
}

.newsletter-section {
    background: linear-gradient(45deg, #2d5eff 0%, #5b8dff 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    color: white;
    text-align: center;
}

.newsletter-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.newsletter-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
}

.newsletter-button {
    background: white;
    color: #2d5eff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
}

.footer-col {
    padding-right: 1rem;
}

.brand-col {
    padding-right: 3rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.2rem;
}

.brand-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.app-badges {
    display: flex;
    gap: 1rem;
}

.app-badge img {
    height: 40px;
    transition: transform 0.3s ease;
}

.app-badge:hover img {
    transform: translateY(-2px);
}

.footer-col h4 {
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

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

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

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2d5eff;
}


.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.5rem 0;
}

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

.copyright {
    color: #666;
    font-size: 0.8rem;
}

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

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2d5eff;
    color: white;
    transform: translateY(-2px);
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #2d5eff;
}

@media (max-width: 991.98px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .brand-col {
        grid-column: 1 / -1;
        padding-right: 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 767.98px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.reveal-bottom {
    opacity: 0;
    transform: translateY(50px);
    visibility: hidden;
}

.reveal-bottom.visible {
    visibility: visible;
    animation: revealBottom 0.8s cubic-bezier(0.5, 0, 0, 1) forwards;
}

.reveal-side {
    opacity: 0;
    transform: translateX(-50px);
    visibility: hidden;
}

.reveal-side.visible {
    visibility: visible;
    animation: revealSide 0.8s cubic-bezier(0.5, 0, 0, 1) forwards;
}

.fade-in {
    opacity: 0;
    visibility: hidden;
}

.fade-in.visible {
    visibility: visible;
    animation: fadeIn 1s ease forwards;
}

.scale-up {
    transform: scale(0.95);
    opacity: 0;
    visibility: hidden;
}

.scale-up.visible {
    visibility: visible;
    animation: scaleUp 0.6s ease forwards;
}

/* Keyframes */
@keyframes revealBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealSide {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.hero {
    opacity: 0;
    animation: heroReveal 1s cubic-bezier(0.5, 0, 0, 1) forwards;
}

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-box,
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover,
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.reveal-delay-1 {
    animation-delay: 0.2s;
}

.reveal-delay-2 {
    animation-delay: 0.4s;
}

.reveal-delay-3 {
    animation-delay: 0.6s;
}

.reveal-delay-4 {
    animation-delay: 0.8s;
}

.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(90%, 600px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.1),
        0 6px 6px rgba(0, 0, 0, 0.1),
        0 0 100px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10000;
    animation: slideUp 0.5s ease-out;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20000;
}

.cookie-modal-content {
    background: #fff;
    padding: 2rem 2.2rem;
    border-radius: 18px;
    min-width: 310px;
    max-width: 95vw;
    box-shadow: 0 6px 36px rgba(0, 0, 0, 0.15);
    font-family: 'Nunito', sans-serif;
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 100%);
        opacity: 0;
    }

    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.cookie-icon {
    font-size: 2.5rem;
    color: #0056b3;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.cookie-text {
    flex: 1;
    color: #333;
    font-family: "Nunito", sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-text a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.cookie-text a:hover {
    color: #003d80;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.accept-btn {
    background: linear-gradient(135deg, #0056b3, #007bff);
    color: white;
}

.reject-btn {
    background: white;
    color: #333;
    border: 2px solid #ddd;
}

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

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

.mentions-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.mentions-link:hover {
    text-decoration: underline;
}

.modal-title {
    font-weight: 700;
    color: #007bff;
}

.modal-body {
    text-align: left;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    max-height: 70vh;
    overflow-y: auto;
}