@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary-blue: #0f4c81;
    --primary-blue-rgb: 15, 76, 129;
    --primary-green: #0d9488;
    --light-green: #f0fdf4;
    --accent-green: #10b981;
    --accent-green-hover: #059669;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --border-focus: #0f4c81;
    --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --btn-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.2), 0 2px 4px -2px rgba(16, 185, 129, 0.2);
    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --border-radius: 12px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    margin: 0;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-bottom: 3rem;
}

.container {
    width: 95%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

/* Navigation Bar styling */
.navbar {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1.5px solid var(--border-color);
    padding: 0.75rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 2px 4px -2px rgba(0, 0, 0, 0.01);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.nav-logo {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 1rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-blue);
    background-color: var(--light-green);
}

/* Header design */
header {
    text-align: center;
    margin-bottom: 2.5rem;
    border-bottom: 2px solid var(--light-green);
    padding-bottom: 1.5rem;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.header-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.header-title-container {
    flex-grow: 1;
}

header h1 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

header h2 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-top: 0.25rem;
}

header p.province {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}

/* Step Wizard Progress Bar */
.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.steps-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--border-color);
    transform: translateY(-50%);
    z-index: 1;
}

.steps-line-progress {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    transform: translateY(-50%);
    z-index: 2;
    transition: width 0.4s ease;
}

.step-item {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.step-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.step-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 0.5rem;
    position: absolute;
    top: 42px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* Step States */
.step-item.active .step-badge {
    border-color: var(--primary-blue);
    background-color: var(--primary-blue);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.15);
}

.step-item.active .step-title {
    color: var(--primary-blue);
    font-weight: 700;
}

.step-item.completed .step-badge {
    border-color: var(--primary-green);
    background-color: var(--primary-green);
    color: #fff;
}

.step-item.completed .step-title {
    color: var(--primary-green);
}

/* Form structure */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-header {
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--light-green);
}

.step-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.step-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Form Fields Layout */
.form-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.col-12 { grid-column: span 12; }
.col-8 { grid-column: span 8; }
.col-6 { grid-column: span 6; }
.col-4 { grid-column: span 4; }
.col-3 { grid-column: span 3; }

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.form-group label .required {
    color: var(--error);
}

.form-control {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    background-color: #fff;
    color: var(--text-main);
    outline: none;
    transition: all 0.2s ease;
    width: 100%;
}

.form-control:focus {
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.1);
}

.form-control::placeholder {
    color: #cbd5e1;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234b5563'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    padding-right: 2.5rem;
}

/* File upload zones */
.upload-zone {
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    background-color: #fafafa;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
}

.upload-zone:hover, .upload-zone.dragover {
    border-color: var(--primary-green);
    background-color: var(--light-green);
}

.upload-zone svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: var(--primary-green);
    stroke-width: 2;
}

.upload-zone span.upload-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
}

.upload-zone span.upload-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.upload-zone input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-preview {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--primary-blue);
    font-weight: 600;
    display: none;
    align-items: center;
    gap: 0.25rem;
}

/* Checkbox and Radio styling */
.checkbox-group, .radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.checkbox-label, .radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-main);
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"],
.radio-label input[type="radio"] {
    width: 1.1rem;
    height: 1.1rem;
    border: 1.5px solid var(--border-color);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    accent-color: var(--primary-green);
}

.radio-label input[type="radio"] {
    border-radius: 50%;
}

/* Image preview box for Passport Photo */
.photo-upload-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    height: 100%;
    min-height: 180px;
    position: relative;
    overflow: hidden;
    background-color: #fafafa;
    transition: all 0.3s ease;
}

.photo-upload-wrapper:hover, .photo-upload-wrapper.dragover {
    border-color: var(--primary-blue);
    background-color: #f0f9ff;
}

.photo-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}

.photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    text-align: center;
}

.photo-placeholder svg {
    width: 40px;
    height: 40px;
    stroke: var(--text-muted);
    stroke-width: 1.5;
}

.photo-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Dynamic Family Details Table */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.family-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.family-table th {
    background-color: var(--light-green);
    color: var(--primary-blue);
    padding: 0.75rem 1rem;
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
    white-space: nowrap;
}

.family-table td {
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.family-table tbody tr:last-child td {
    border-bottom: none;
}

.family-table .form-control {
    padding: 0.5rem 0.75rem;
    font-size: 0.88rem;
    border-radius: 6px;
}

.btn-icon-danger {
    background: none;
    border: none;
    color: var(--error);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.btn-icon-danger:hover {
    background-color: #fee2e2;
}

.table-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}

/* Terms and Conditions box */
.terms-box {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    height: 250px;
    overflow-y: scroll;
    padding: 1.25rem;
    background-color: #fafafa;
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.terms-box h4 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-align: center;
    text-transform: uppercase;
}

.terms-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
}

.terms-num {
    font-weight: bold;
    color: var(--primary-green);
    min-width: 20px;
}

/* Signature Pad Area */
.signature-container {
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}

.signature-pad {
    width: 100%;
    height: 150px;
    display: block;
    cursor: crosshair;
}

.signature-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: #fafafa;
    border-top: 1px solid var(--border-color);
}

.signature-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.btn-clear-sig {
    background: none;
    border: none;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    font-family: var(--font-primary);
}

.btn-clear-sig:hover {
    text-decoration: underline;
}

/* Navigation buttons styling */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-green);
}

.btn {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-secondary {
    background-color: #f3f4f6;
    color: #4b5563;
}

.btn-secondary:hover {
    background-color: #e5e7eb;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    color: #fff;
    box-shadow: 0 4px 10px rgba(15, 76, 129, 0.2);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(15, 76, 129, 0.3);
}

.btn-success {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    color: #fff;
    box-shadow: var(--btn-shadow);
}

.btn-success:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(16, 185, 129, 0.3);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Info Box / Notification Style */
.info-card {
    background-color: var(--light-green);
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.88rem;
    color: #065f46;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.info-card svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--primary-green);
    stroke-width: 2;
    flex-shrink: 0;
}

/* Form Review Table styles */
.review-section {
    margin-bottom: 2rem;
}

.review-section h4 {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    border-left: 3px solid var(--primary-green);
    padding-left: 0.5rem;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    background-color: #fafafa;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.25rem;
}

.review-item {
    display: flex;
    flex-direction: column;
}

.review-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

.review-value {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
    word-break: break-word;
}

.review-value.empty {
    font-style: italic;
    color: #9ca3af;
}

/* Success Receipt Layout */
.receipt-wrapper {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin-top: 1.5rem;
    box-shadow: var(--card-shadow);
}

.receipt-header {
    text-align: center;
    border-bottom: 3px double var(--primary-green);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.success-banner {
    background-color: var(--light-green);
    color: #065f46;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.success-banner svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary-green);
}

.success-banner h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

.receipt-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.receipt-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.receipt-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.photo-cell-receipt {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--border-color);
    padding: 0.5rem;
    border-radius: 6px;
    width: 150px;
    height: 180px;
    margin: 0 auto;
}

.photo-cell-receipt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.signature-img-receipt {
    max-height: 80px;
    border-bottom: 1px solid var(--text-main);
    display: block;
}

.print-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Footer design */
footer {
    margin-top: 3rem;
}

.footer-divider {
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin-bottom: 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.footer-page {
    font-weight: 600;
    color: var(--primary-green);
    background-color: var(--light-green);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(13, 148, 136, 0.15);
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--border-color);
}

.footer-menu a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-menu a:hover {
    color: var(--primary-blue);
}

/* Print Stylesheet overrides */
@media print {
    /* Set page margins to remove default browser URL / Timestamp print headers */
    @page {
        size: A4 portrait;
        margin: 0; /* Removing margin disables default browser headers/footers */
    }

    body {
        background: #fff;
        padding: 0;
        margin: 0;
        color: #000;
        font-family: Arial, sans-serif;
        font-size: 10px;
    }

    /* Hide web screen interface components */
    .page-wrapper, .navbar, .container, footer, .print-actions, .success-banner, .receipt-wrapper {
        display: none !important;
    }

    /* Display printed PDF structure */
    .print-pdf-layout {
        display: block !important;
        width: 100%;
    }

    .pdf-page {
        width: 100%;
        page-break-after: always;
        box-sizing: border-box;
        padding: 10mm 15mm;
    }

    .pdf-page:last-child {
        page-break-after: avoid;
    }

    .pdf-header {
        width: 100%;
        margin-bottom: 8px;
    }

    .pdf-section-title {
        font-size: 10px;
        font-weight: bold;
        background-color: #eaeaea !important;
        border: 1px solid #000;
        padding: 3px 6px;
        margin-top: 8px;
        margin-bottom: 4px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    .pdf-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 9.5px;
        margin-bottom: 6px;
    }

    .pdf-table th, .pdf-table td {
        border: 1px solid #000;
        padding: 3px 5px;
        text-align: left;
    }

    .pdf-table th {
        background-color: #f3f3f3 !important;
        font-weight: bold;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    /* Ensure backgrounds print exactly */
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-blue);
    cursor: pointer;
}

/* Mobile menu close toggle */
.mobile-menu-close {
    display: none;
}

/* Responsive breakpoint adjustments */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    .mobile-menu-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: var(--primary-blue);
        cursor: pointer;
        padding: 5px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        padding: 4rem 1.5rem;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1001;
        align-items: flex-start;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        text-align: left;
    }

    body {
        padding: 1rem 0.5rem;
    }
    .container {
        padding: 1.5rem 1rem;
    }
    .steps-container {
        margin-bottom: 2.5rem;
    }
    .step-title {
        display: none; /* Hide labels on mobile to save space */
    }
    .step-item.active .step-title {
        display: block;
        font-size: 0.7rem;
        top: 42px;
        left: 50%;
        transform: translateX(-50%);
    }
    .form-grid {
        gap: 1rem;
    }
    .col-8, .col-6, .col-4, .col-3 {
        grid-column: span 12; /* Stack everything on mobile */
    }
    .review-grid {
        grid-template-columns: 1fr;
    }
    .form-navigation {
        flex-direction: column-reverse;
        gap: 1rem;
    }
    .form-navigation .btn {
        width: 100%;
        justify-content: center;
    }
    .footer-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}
