/* ===== STYLES SPÉCIFIQUES PAGE DEVIS ===== */

/* Scroll smooth pour les ancres */
html {
    scroll-behavior: smooth;
}

/* Ajustement du scroll pour le header fixe */
#votre-projet {
    scroll-margin-top: 140px;
}

.form-header {
    scroll-margin-top: 140px;
}

/* Fix pour le header sur la page Devis */
body .header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 2px solid #e5e7eb !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
    width: 100% !important;
}

body .main-header {
    padding: 1rem 0 !important;
}

body .main-header .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 2rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    width: 100% !important;
}

body .logo {
    flex-shrink: 0 !important;
}

body .logo img {
    height: 50px !important;
    width: auto !important;
}

body .menu {
    display: none !important;
}

body .menu ul {
    display: flex !important;
    align-items: center !important;
    gap: 2rem !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

body .menu li {
    list-style: none !important;
}

body .menu a {
    text-decoration: none !important;
    color: #1f2937 !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    padding: 0.5rem 0 !important;
}

body .menu a:hover {
    color: #1e40af !important;
}

/* Styles du bouton supprimés pour utiliser ceux du header principal */

body .hamburger {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0.5rem !important;
    transition: all 0.3s ease !important;
}

body .hamburger span {
    width: 25px !important;
    height: 3px !important;
    background: #1f2937 !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
}

/* Desktop */
@media (min-width: 992px) {
    body .menu {
        display: flex !important;
    }
    
    body .hamburger {
        display: none !important;
    }
    
    /* Style btn-primary supprimé */
}

/* Mobile */
@media (max-width: 991px) {
    body .menu {
        display: none !important;
    }
    
    body .hamburger {
        display: flex !important;
    }
    
    /* Style btn-primary supprimé */
}

/* Hero Section */
.hero-section {
    padding: 6rem 0 6rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-pricing {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    min-width: 250px;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.pricing-card-link:hover {
    text-decoration: none;
    color: inherit;
    border-color: var(--primary-color);
}

.pricing-hint {
    margin-top: 0.75rem !important;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.8rem !important;
    color: var(--text-medium) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.4;
}

.pricing-hint i {
    color: var(--accent-color);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.pricing-hint strong {
    color: var(--primary-color);
    font-weight: 600;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pricing-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.pricing-info .price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.pricing-info p {
    font-size: 0.875rem;
    color: var(--text-medium);
    margin: 0;
}

/* Section Types de Projets */
.project-types-section {
    padding: 6rem 0;
    background: white;
}

.project-types-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.project-types-header {
    text-align: center;
    margin-bottom: 4rem;
}

.project-types-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.project-types-header p {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.6;
}

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

.project-type-card {
    background: var(--bg-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.project-type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.project-type-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.project-type-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.project-type-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.project-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
    color: var(--text-medium);
    justify-content: center;
    font-size: 0.85rem;
}

.project-features li i {
    color: var(--accent-color);
    font-size: 0.875rem;
    width: 14px;
    text-align: center;
}

/* Section Formulaire */
.form-section {
    padding: 6rem 0;
    background: var(--bg-gray);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.form-content {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.form-header p {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.project-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
    color: var(--text-dark);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Bouton de soumission - styles supprimés pour utiliser ceux du header */

/* Section Contact Info */
.contact-info-section {
    padding: 4rem 0;
    background: white;
}

.contact-info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.contact-info-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info-content p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.contact-details p {
    color: var(--text-medium);
    margin: 0;
    font-size: 0.9rem;
}

/* ===== MOBILE ONLY - OPTIMISATIONS COMPACTES ===== */
@media (max-width: 768px) {
    /* Hero Section */
    .hero-section {
        padding: 4rem 0 2.5rem !important;
    }
    
    .hero-container {
        padding: 0 1.25rem !important;
    }
    
    .hero-content h1 {
        font-size: 1.875rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.75rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.875rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-pricing {
        flex-direction: column !important;
        gap: 0.875rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .pricing-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1.125rem 1rem !important;
    }
    
    /* Main Content Section */
    .main-content-section {
        padding: 2rem 0 !important;
    }
    
    .main-content-container {
        flex-direction: column !important;
        gap: 2.5rem !important;
        padding: 0 1.25rem !important;
    }
    
    /* Formulaire */
    .form-column {
        order: 1 !important;
    }
    
    .form-header {
        margin-bottom: 1.5rem !important;
    }
    
    .form-header h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .form-header p {
        font-size: 0.875rem !important;
    }
    
    .project-form {
        padding: 0 !important;
    }
    
    .form-group {
        margin-bottom: 1.25rem !important;
    }
    
    .form-group label {
        font-size: 0.875rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem 1rem !important;
        font-size: 16px !important;
        border-radius: 10px !important;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    
    .file-label {
        padding: 1.25rem !important;
        min-height: 70px !important;
        font-size: 0.875rem !important;
    }
    
    .file-label small {
        font-size: 0.75rem !important;
    }
    
    .btn-lg {
        width: 100% !important;
        padding: 0.875rem 1.5rem !important;
        font-size: 0.9375rem !important;
    }
    
    /* Process Column */
    .process-column {
        order: 2 !important;
    }
    
    .process-header {
        margin-bottom: 2rem !important;
    }
    
    .process-header h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .process-header p {
        font-size: 0.875rem !important;
    }
    
    .process-timeline {
        gap: 1.5rem !important;
    }
    
    .process-item {
        padding: 1.25rem !important;
    }
    
    .step-number {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.25rem !important;
        margin-bottom: 1rem !important;
    }
    
    .step-content h4 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .step-content p {
        font-size: 0.875rem !important;
        line-height: 1.5 !important;
    }
    
    /* Project Types */
    .project-types-section {
        padding: 2.5rem 0 !important;
    }
    
    .project-types-container {
        padding: 0 1.25rem !important;
    }
    
    .project-types-header {
        margin-bottom: 1.5rem !important;
    }
    
    .project-types-header h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .project-types-header p {
        font-size: 0.875rem !important;
    }
    
    .project-types-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    
    .project-type-card {
        padding: 1.5rem !important;
    }
    
    .project-type-icon {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.25rem !important;
        margin-bottom: 1rem !important;
    }
    
    .project-type-card h3 {
        font-size: 1.125rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .project-type-card > p {
        font-size: 0.875rem !important;
        margin-bottom: 1rem !important;
    }
    
    .project-features {
        margin-bottom: 1.25rem !important;
    }
    
    .project-features li {
        font-size: 0.8125rem !important;
        padding: 0.375rem 0 !important;
    }
    
    /* Contact Info */
    .contact-info-section {
        padding: 2.5rem 0 !important;
    }
    
    .contact-info-container {
        padding: 0 1.25rem !important;
    }
    
    .contact-info-content h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .contact-info-content > p {
        font-size: 0.875rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .contact-methods {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .contact-method {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1.125rem !important;
    }
    
    .contact-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.125rem !important;
    }
    
    .contact-details h4 {
        font-size: 0.9375rem !important;
        margin-bottom: 0.375rem !important;
    }
    
    .contact-details p {
        font-size: 0.8125rem !important;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 3.5rem 0 2rem !important;
    }
    
    .hero-content h1 {
        font-size: 1.625rem !important;
    }
    
    .form-header h2 {
        font-size: 1.375rem !important;
    }
    
    .process-header h2 {
        font-size: 1.375rem !important;
    }
    
    .project-types-header h2 {
        font-size: 1.375rem !important;
    }
    
    .contact-info-content h2 {
        font-size: 1.375rem !important;
    }
}

/* Animation d'apparition */
.form-group {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }
.form-group:nth-child(6) { animation-delay: 0.6s; }
.form-group:nth-child(7) { animation-delay: 0.7s; }

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

/* États de validation */
#reseaux_sociaux:valid,
#reseaux_sociaux:invalid:not(:placeholder-shown),
#reseaux_sociaux:focus,
#reseaux_sociaux:focus-visible {
    border-color: var(--border-color) !important;
    box-shadow: none !important;
}

/* Placeholder styling */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 1;
}

/* Champ de téléchargement de fichier */
.file-upload {
    position: relative;
    width: 100%;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    background: var(--bg-light);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 80px;
    text-align: center;
}

.file-label:hover {
    border-color: var(--primary-color);
    background: rgba(0, 123, 255, 0.05);
}

.file-label i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.file-label span {
    color: var(--text-medium);
    font-size: 14px;
    font-weight: 500;
}

.file-input:focus + .file-label {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Drag and drop states */
.file-label.dragover {
    border-color: var(--primary-color);
    background: rgba(0, 123, 255, 0.1);
    transform: scale(1.02);
}

/* Focus visible pour l'accessibilité */
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Style btn-primary supprimé */

/* Section Processus */
.process-section {
    padding: 40px 0;
    background: var(--bg-light);
}

.process-header {
    text-align: center;
    margin-bottom: 30px;
}

.process-header h2 {
    color: var(--text-dark);
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.process-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.process-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    box-shadow: 0 3px 10px rgba(0, 123, 255, 0.3);
}

.step-content h4 {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.step-content p {
    color: var(--text-medium);
    font-size: 12px;
    margin: 0;
    line-height: 1.3;
}

.process-arrow {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
    margin: 0 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-section {
        padding: 30px 0;
    }
    
    .process-header h2 {
        font-size: 24px;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 20px;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        font-size: 16px;
    }
    
    .process-item {
        min-width: 100px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .step-content h4 {
        font-size: 13px;
    }
    
    .step-content p {
        font-size: 11px;
    }
}

/* Responsive fix: conserver meme largeur sur mobile */
@media (max-width: 992px) {
    .process-timeline {
        flex-direction: column;
        align-items: center;
    }
    .process-item {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
}

/* ===== NOUVELLE DISPOSITION ===== */
.main-content-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.main-content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-column {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

.process-column {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    position: sticky;
    top: 2rem;
}

.process-header {
    text-align: center;
    margin-bottom: 2rem;
}

.process-header h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.process-header p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.step-content p {
    color: var(--text-medium);
    margin: 0;
    font-size: 0.9rem;
}

.process-arrow {
    display: none;
}

/* ===== RESPONSIVE POUR NOUVELLE DISPOSITION ===== */
@media (max-width: 1200px) {
    .main-content-container {
        gap: 3rem;
    }
    
    .form-column,
    .process-column {
        padding: 2rem;
    }
}

@media (max-width: 992px) {
    .main-content-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-column {
        position: static;
        order: -1;
    }
    
    .process-timeline {
        flex-direction: row;
        overflow-x: auto;
        gap: 1rem;
        padding-bottom: 1rem;
    }
    
    .process-item {
        min-width: 200px;
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .process-arrow {
        display: block;
        color: var(--primary-color);
        font-size: 1.5rem;
        align-self: center;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .main-content-section {
        padding: 2rem 0;
    }
    
    .main-content-container {
        padding: 0 1rem;
    }
    
    .form-column,
    .process-column {
        padding: 1.5rem;
    }
    
    .form-header h2,
    .process-header h2 {
        font-size: 1.5rem;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-item {
        flex-direction: row;
        text-align: left;
        min-width: auto;
    }
    
    .process-arrow {
        display: none;
    }
}

.checkbox-label input[type="checkbox"] {
    display: inline-block !important;
    appearance: auto !important;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    margin-right: 0.7em;
    margin-left: 0;
    vertical-align: middle;
    accent-color: var(--primary-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    font-size: 1rem;
    position: relative;
}

.checkbox-label .checkmark { display: none !important; }