.rapido-header-logo {
    position: absolute;
    top: 1px;
    left: 1px;
    z-index: 100;
 }
 
 /* ========== HERO SECTION - CENTRÉ ========== */
 .creation-hero-section {
    background: linear-gradient(135deg, #0a1628 0%, #1a2844 100%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
 }
 
 .creation-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(77, 163, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
 }
 
 .hero-content-centered {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
 }
 
 .creation-badge {
    display: inline-block;
    background: linear-gradient(135deg, 
        rgba(77, 163, 255, 0.2) 0%, 
        rgba(77, 163, 255, 0.15) 50%, 
        rgba(77, 163, 255, 0.25) 100%);
    color: #4DA3FF;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(77, 163, 255, 0.4);
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(77, 163, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
 }
 
 .creation-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(90deg, transparent 0px, rgba(255, 255, 255, 0.03) 1px, transparent 2px, transparent 4px);
    pointer-events: none;
    z-index: 1;
 }
 
 .creation-badge::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    transform: skewX(-25deg);
    animation: badgeShine 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
 }
 
 @keyframes badgeShine {
    0% { left: -100%; }
    20% { left: 150%; }
    100% { left: 150%; }
 }
 
 .hero-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
 }
 
 .hero-subtitle {
    font-size: 1.3rem;
    color: #B8C5D6;
    line-height: 1.6;
    margin-bottom: 40px;
 }
 
 .hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
 }
 
 .btn-primary-hero {
    background: linear-gradient(135deg, #4DA3FF 0%, #357ABD 100%);
    color: #FFFFFF;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(77, 163, 255, 0.3);
 }
 
 .btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(77, 163, 255, 0.4);
    color: #FFFFFF;
    text-decoration: none;
 }
 
 .btn-secondary-hero {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(77, 163, 255, 0.3);
    backdrop-filter: blur(10px);
 }
 
 .btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(77, 163, 255, 0.5);
    color: #FFFFFF;
    text-decoration: none;
 }
 
 /* ========== STATS BANNER ========== */
 .stats-banner {
    background: #FFFFFF;
    padding: 50px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 19px,
            rgba(77, 163, 255, 0.06) 19px,
            rgba(77, 163, 255, 0.06) 20px
        );
    pointer-events: none;
    z-index: 0;
}
 
 .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
 }
 
 .stat-box {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
 }
 
 .stat-box:hover {
    transform: translateY(-5px);
 }
 
 .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
 }
 
 .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4DA3FF;
    line-height: 1;
    margin-bottom: 8px;
 }
 
 .stat-label {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 600;
 }
 
 /* ========== SOLUTIONS SECTION - CARDS VERTICALES ========== */
 .solutions-section {
    background: #fafbfc;
    padding: 100px 0;
    position: relative;
 }
 
 .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
 }
 
 .section-title-centered {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a2844;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
 }
 
 .section-title-centered::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4DA3FF 0%, #357ABD 100%);
    border-radius: 2px;
 }
 
 .section-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a5568;
 }
 
 .solutions-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
 }
 
 .solution-card {
    background: #FFFFFF;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
 }
 
 .solution-card:hover {
    border-color: #4DA3FF;
    box-shadow: 0 15px 40px rgba(77, 163, 255, 0.15);
    transform: translateY(-5px);
 }
 
 .solution-card.card-highlight {
    border-color: #4DA3FF;
    box-shadow: 0 8px 30px rgba(77, 163, 255, 0.12);
 }
 
 .card-header {
    background: linear-gradient(135deg, rgba(77, 163, 255, 0.08) 0%, rgba(77, 163, 255, 0.03) 100%);
    padding: 35px 30px 30px;
    text-align: center;
    position: relative;
 }
 
 .card-highlight .card-header {
    background: linear-gradient(135deg, rgba(77, 163, 255, 0.15) 0%, rgba(77, 163, 255, 0.08) 100%);
 }
 
 .card-icon-large {
    font-size: 4rem;
    margin-bottom: 15px;
 }
 
 .card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a2844;
    margin-bottom: 10px;
 }
 
 .card-badge {
    display: inline-block;
    background: #4DA3FF;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 10px;
 }
 
 .card-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
 }
 
 .card-intro {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 25px;
 }
 
 .card-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex: 1;
 }
 
 .card-features-list li {
    padding: 10px 0;
    font-size: 1rem;
    color: #2d3748;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
 }
 
 .card-features-list li:last-child {
    border-bottom: none;
 }
 
 .feature-check {
    color: #4DA3FF;
    font-weight: 700;
    margin-right: 12px;
    font-size: 1.2rem;
 }
 
 .card-ideal {
    background: rgba(77, 163, 255, 0.08);
    padding: 15px;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #2d3748;
    line-height: 1.5;
 }
 
 .card-ideal strong {
    color: #1a2844;
 }
 
 /* ========== PROCESS SECTION - HORIZONTAL SCROLL ========== */
 .process-section {
    background: linear-gradient(135deg, #1a2844 0%, #0a1628 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
 }
 
 .process-section .container-fluid {
    max-width: 100%;
    padding: 0 40px;
 }
 
 .process-header-wrapper {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
 }
 
 .section-title-light {
    font-size: 2.8rem;
    font-weight: 800;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    width: 100%;
 }
 
 .section-title-light::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4DA3FF 0%, #6AB8FF 100%);
    border-radius: 2px;
 }
 
 .process-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #B8C5D6;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
 }
 
 .process-horizontal-scroll {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 20px 0 40px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(77, 163, 255, 0.3) transparent;
    justify-content: center;
 }
 
 .process-horizontal-scroll::-webkit-scrollbar {
    height: 8px;
 }
 
 .process-horizontal-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
 }
 
 .process-horizontal-scroll::-webkit-scrollbar-thumb {
    background: rgba(77, 163, 255, 0.3);
    border-radius: 10px;
 }
 
 .process-horizontal-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(77, 163, 255, 0.5);
 }
 
 .process-card {
    min-width: 280px;
    max-width: 280px;
    flex: 0 0 280px;
    background: rgba(232, 238, 246, 0.08);
    border: 2px solid rgba(77, 163, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    scroll-snap-align: start;
    transition: all 0.3s ease;
    position: relative;
 }
 
 .process-card:hover {
    background: rgba(232, 238, 246, 0.12);
    border-color: rgba(77, 163, 255, 0.4);
    transform: translateY(-5px);
 }
 
 .process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(77, 163, 255, 0.2);
    line-height: 1;
 }
 
 .process-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
 }
 
 .process-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4DA3FF;
    margin-bottom: 15px;
 }
 
 .process-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #E8EEF6;
    margin: 0;
 }
 
 /* Affichage adapté selon la largeur d'écran */
 @media (min-width: 1600px) {
    .process-horizontal-scroll {
        overflow-x: visible;
    }
 }
 
 @media (min-width: 1200px) and (max-width: 1599px) {
    .process-horizontal-scroll {
        justify-content: center;
    }
 }
 
 @media (min-width: 992px) and (max-width: 1199px) {
    .process-section .container-fluid {
        padding: 0 30px;
    }
    
    .process-horizontal-scroll {
        justify-content: center;
    }
 }
 
 /* ========== ADVANTAGES SECTION - SPLIT LAYOUT ========== */
 .advantages-section {
    background: #fafbfc;
    padding: 100px 0;
 }
 
 .advantages-intro {
    padding-right: 40px;
 }
 
 .section-title-dark {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a2844;
    margin-bottom: 25px;
    line-height: 1.2;
 }
 
 .advantages-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a5568;
 }
 
 .advantages-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
 }
 
 .advantage-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #FFFFFF;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
 }
 
 .advantage-row:hover {
    border-color: #4DA3FF;
    box-shadow: 0 8px 25px rgba(77, 163, 255, 0.1);
    transform: translateX(5px);
 }
 
 .advantage-icon-circle {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(77, 163, 255, 0.15) 0%, rgba(77, 163, 255, 0.08) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
 }
 
 .advantage-text-block {
    flex: 1;
 }
 
 .advantage-text-block h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a2844;
    margin-bottom: 8px;
 }
 
 .advantage-text-block p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
 }
 
 /* ========== CONTACT FORM SECTION - SPLIT ========== */
 .contact-form-section {
    background: linear-gradient(135deg, #0a1628 0%, #1a2844 100%);
    padding: 100px 0;
    position: relative;
 }
 
 .contact-form-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(77, 163, 255, 0.03) 40px, rgba(77, 163, 255, 0.03) 42px);
    pointer-events: none;
 }
 
 .contact-info-side {
    padding-right: 40px;
 }
 
 .contact-info-content {
    position: sticky;
    top: 100px;
 }
 
 .form-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
 }
 
 .form-section-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #B8C5D6;
    margin-bottom: 40px;
 }
 
 .contact-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
 }
 
 .contact-highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(77, 163, 255, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(77, 163, 255, 0.2);
 }
 
 .highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
 }
 
 .highlight-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
 }
 
 .highlight-text strong {
    color: #FFFFFF;
    font-size: 1.05rem;
    font-weight: 600;
 }
 
 .highlight-text span {
    color: #B8C5D6;
    font-size: 0.9rem;
 }
 
 .alternative-contact {
    background: rgba(232, 238, 246, 0.05);
    border: 1px solid rgba(77, 163, 255, 0.2);
    border-radius: 12px;
    padding: 25px;
 }
 
 .alt-contact-title {
    color: #B8C5D6;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 600;
 }
 
 .contact-phone,
 .contact-email {
    display: block;
    color: #4DA3FF;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
 }
 
 .contact-phone:hover,
 .contact-email:hover {
    color: #6AB8FF;
    text-decoration: underline;
 }
 
 .form-container-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
 }
 
 /* Formulaire */
 .creation-form {
    margin: 0;
 }
 
 .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
 }
 
 .form-group {
    margin-bottom: 25px;
    flex: 1;
 }
 
 .form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a2844;
    margin-bottom: 8px;
 }
 
 .form-control {
    width: 100%;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    color: #1A2844;
    transition: all 0.3s ease;
    outline: none;
 }
 
 .form-control:focus {
    border-color: #4DA3FF;
    box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.1);
    background: #FFFFFF;
 }
 
 .form-control::placeholder {
    color: #a0aec0;
 }
 
 textarea.form-control {
    resize: vertical;
    min-height: 100px;
 }
 
 select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234DA3FF' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
 }
 
 .form-checkbox label {
    font-size: 0.9rem;
    color: #4a5568;
    cursor: pointer;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 18px;
 }
 
 .btn-submit-form {
    width: 100%;
    background: linear-gradient(135deg, #4DA3FF 0%, #357ABD 100%);
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(77, 163, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
 }
 
 .btn-submit-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(77, 163, 255, 0.4);
 }
 
 .btn-submit-form:active {
    transform: translateY(0);
 }
 
 .btn-submit-form:disabled {
    opacity: 0.7;
    cursor: not-allowed;
 }
 
 /* Loader */
 .btn-submit-form .spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #FFFFFF;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
 }
 
 .btn-submit-form.loading .spinner {
    display: block;
 }
 
 .btn-submit-form.loading .btn-text {
    opacity: 0.7;
 }
 
 @keyframes spin {
    to { transform: rotate(360deg); }
 }
 
 .form-result {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
 }
 
 .form-result.success {
    background: rgba(76, 175, 80, 0.15);
    border: 2px solid rgba(76, 175, 80, 0.3);
    color: #2e7d32;
 }
 
 .form-result.error {
    background: rgba(255, 82, 82, 0.15);
    border: 2px solid rgba(255, 82, 82, 0.3);
    color: #c62828;
 }
 
 /* ========== RESPONSIVE ========== */
 @media (max-width: 992px) {
    .solutions-cards-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
 
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
 
    .contact-info-side {
        padding-right: 0;
        margin-bottom: 40px;
    }
 
    .contact-info-content {
        position: static;
    }
 
    .advantages-intro {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    /* Process section en mode scroll sur tablette */
    .process-section .container-fluid {
        padding: 0 20px;
    }
 }
 
 @media (max-width: 768px) {
    /* Hero improvements */
    .hero-main-title {
        font-size: 2.5rem;
    }
 
    .hero-subtitle {
        font-size: 1.1rem;
    }
 
    .hero-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
 
    .btn-primary-hero,
    .btn-secondary-hero {
        justify-content: center;
    }
    
    /* Stats grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Add mobile padding to all main sections */
    .creation-hero-section .hero-content-centered {
        padding: 0 20px;
    }
    
    .stats-banner .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .solutions-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .advantages-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .contact-form-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }
 
    /* Section titles */
    .section-title-centered,
    .section-title-light,
    .section-title-dark {
        font-size: 2rem;
    }
 
    /* Form improvements */
    .form-row {
        flex-direction: column;
        gap: 0;
    }
 
    .form-container-card {
        padding: 30px 20px;
    }
    
    /* Contact info side */
    .contact-info-side {
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Process section mobile - vertical layout */
    .process-section {
        padding: 70px 0;
    }
    
    .process-section .container-fluid {
        padding: 0 20px;
    }
    
    .process-header-wrapper {
        margin-bottom: 40px;
        padding: 0;
    }
    
    .process-horizontal-scroll {
        flex-direction: column;
        overflow-x: visible;
        gap: 20px;
        padding: 0;
        scroll-snap-type: none;
        justify-content: flex-start;
    }
    
    .process-card {
        min-width: 100%;
        max-width: 100%;
        flex: 1 1 auto;
        scroll-snap-align: none;
    }
    
    .process-number {
        font-size: 2.5rem;
        top: 15px;
        right: 15px;
    }
    
    .process-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .process-title {
        font-size: 1.3rem;
    }
    
    .process-text {
        font-size: 0.95rem;
    }
 }
 
 @media (max-width: 576px) {
    /* Hero section */
    .creation-hero-section {
        padding: 100px 0 70px;
    }
    
    .hero-content-centered {
        padding: 0 15px;
    }
 
    /* All sections padding */
    .solutions-section,
    .process-section,
    .advantages-section,
    .contact-form-section {
        padding: 60px 0;
    }
    
    .stats-banner {
        padding: 40px 0;
    }
    
    /* Extra padding for containers */
    .stats-banner .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .solutions-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .advantages-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .contact-form-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Contact form section specific padding */
    .contact-info-side {
        padding-left: 0;
        padding-right: 0;
    }
    
    .contact-form-section .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .contact-form-section .col-lg-5,
    .contact-form-section .col-lg-7 {
        padding-left: 0;
        padding-right: 0;
    }
 
    /* Titles */
    .hero-main-title {
        font-size: 2rem;
    }
 
    .form-section-title {
        font-size: 2rem;
    }
    
    .section-title-centered,
    .section-title-light,
    .section-title-dark {
        font-size: 1.75rem;
    }
    
    /* Stats */
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    /* Solution cards */
    .card-title {
        font-size: 1.4rem;
    }
    
    .card-intro {
        font-size: 1rem;
    }
    
    /* Process section extra small screens */
    .process-section .container-fluid {
        padding: 0 15px;
    }
    
    .process-card {
        padding: 25px 20px;
    }
    
    .process-number {
        font-size: 2rem;
    }
    
    /* Advantages */
    .advantage-row {
        padding: 20px 15px;
    }
    
    .advantage-icon-circle {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .advantage-text-block h4 {
        font-size: 1.1rem;
    }
    
    .advantage-text-block p {
        font-size: 0.95rem;
    }
    
    /* Form section */
    .form-container-card {
        padding: 25px 15px;
        margin: 0;
    }
    
    .contact-highlight-item {
        padding: 12px;
    }
    
    .alternative-contact {
        padding: 20px 15px;
    }
    
    /* Contact info content */
    .contact-info-content {
        margin-bottom: 30px;
    }
 }
 
 /* Extra large screens */
 @media (min-width: 1600px) {
    .process-section .container-fluid {
        max-width: 1600px;
        margin: 0 auto;
    }
 }