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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8fafc;
    color: #1e293b;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

.container {
    width: 70%;
    max-width: 1000px;
    min-width: 480px;
    margin: 0 auto;
    padding: 0 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 0;
    padding: 40px 0;
}

.logo {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.language-selector {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #64748b;
}

/* Tracking Form */
.tracking-box {
    background: white;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    margin: 0 auto;
    width: 100%;
    max-width: 700px;
    min-width: 400px;
    border: 1px solid #e2e8f0;
}

.tracking-box h1 {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #0f172a;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.025em;
}

.tab-selector {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
}

.tab {
    font-size: 16px;
    color: #64748b;
    padding: 0 24px 16px;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.tab.active {
    color: #0f172a;
    border-bottom-color: #0f172a;
}

.tab:hover {
    color: #374151;
}

#trackingInputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.input-field {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #111827;
}

.input-field:focus {
    outline: none;
    border-color: #111827;
    box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.1);
}

.input-field::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.track-button {
    width: 100%;
    padding: 16px 24px;
    background: #111827;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.025em;
}

.track-button:hover {
    background: #374151;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.track-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.track-button:active {
    transform: translateY(0);
}

/* Helper Text Styling */
.helper-text {
    text-align: center;
    margin: 20px 0 16px 0;
    padding: 0 20px;
}

.helper-text p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
}

.helper-text a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.helper-text a:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* CAPTCHA Styling */
.captcha-container {
    margin: 24px 0;
    text-align: center;
}

.cf-turnstile {
    display: block;
    width: 100% !important;
    max-width: none !important;
    min-width: 300px;
    height: 65px;
    margin: 12px auto;
}

.cf-turnstile > div,
.cf-turnstile iframe {
    width: 100% !important;
    height: 65px !important;
    border-radius: 12px !important;
}

/* Force Cloudflare widget responsive */
@media (max-width: 768px) {
    .cf-turnstile > div,
    .cf-turnstile iframe {
        max-width: 280px !important;
    }
}

.captcha-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: #6b7280;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.captcha-note svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.track-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    background: #9ca3af;
}

.track-button:disabled:hover {
    background: #9ca3af;
    transform: none;
    box-shadow: none;
}

/* Error Message */
.error-message {
    display: none;
    background: #fef2f2;
    color: #dc2626;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    border: 1px solid #fecaca;
    line-height: 1.6;
    white-space: pre-line;
}

/* Loading */
.loading {
    display: none;
    text-align: center;
    padding: 60px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e5e7eb;
    border-top: 3px solid #111827;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Results Section */
.results-section {
    display: none;
    width: 100%;
    max-width: 700px;
    min-width: 400px;
    margin: 0 auto;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    text-decoration: none;
    margin-bottom: 24px;
    cursor: pointer;
    transition: color 0.2s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
}

.back-button:hover {
    color: #374151;
}

/* Multiple shipments notice */
.multiple-shipments-notice {
    background: #f1f5f9;
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    text-align: center;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    border: 1px solid #e2e8f0;
}

.multiple-shipments-notice a {
    color: #111827;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 500;
}

.notice-arrow {
    color: #9ca3af;
    font-size: 18px;
}

.shipment-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.shipment-tab {
    padding: 8px 16px;
    border: 1px solid #d1d5db;
    border-radius: 20px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.shipment-tab.active {
    background: #111827;
    color: white;
    border-color: #111827;
}

.tracking-status {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
    border: 1px solid #e5e7eb;
}

/* Status header */
.status-header {
    text-align: center;
    margin-bottom: 32px;
}

.status-header h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.025em;
}

.status-subtext {
    color: #6b7280;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Progress Bar */
.progress-container {
    position: relative;
    margin: 0 0 40px 0;
    padding: 0 20px;
}

.progress-wrapper {
    position: relative;
}

.progress-line {
    position: absolute;
    top: 12px;
    left: 24px;
    right: 24px;
    height: 2px;
    background: #d1d5db;
    z-index: 1;
    border-radius: 1px;
}

.progress-line-active {
    height: 2px;
    background: #111827;
    position: absolute;
    top: 0;
    left: 0;
    transition: width 0.5s ease;
    border-radius: 1px;
    margin-left: 0;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 2;
}

.progress-step {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-circle-container {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.step-circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #d1d5db;
    position: relative;
    transition: all 0.3s ease;
    border: none;
    box-shadow: none;
}

.step-circle.active {
    width: 16px;
    height: 16px;
    background: white;
    border: 3px solid #111827;
    box-shadow: none;
}

.step-circle.completed {
    width: 16px;
    height: 16px;
    background: #111827;
    border: none;
    box-shadow: none;
}

.step-label {
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.3;
    margin-top: 12px;
    white-space: pre-line;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.progress-step.active .step-label {
    color: #111827;
    font-weight: 600;
}

.progress-step.completed .step-label {
    color: #111827;
    font-weight: 600;
}

/* Timeline */
.timeline {
    margin-top: 24px;
    border: none;
    border-radius: 0;
    overflow: visible;
}

.timeline-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease;
    position: relative;
    border-radius: 8px;
}

.timeline-header:hover {
    background: #f8fafc;
}

.timeline-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
}

.timeline-header span {
    font-size: 16px;
    color: #374151;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.timeline-chevron {
    transition: transform 0.3s ease;
}

.timeline.expanded .timeline-chevron {
    transform: rotate(180deg);
}

.timeline-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
    border-radius: 8px;
    margin-top: 8px;
}

.timeline.expanded .timeline-content {
    max-height: 2000px;
}

.timeline-item {
    padding: 20px 16px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-date {
    flex-shrink: 0;
    width: 100px;
    text-align: left;
}

.timeline-date .date {
    font-size: 14px;
    color: #374151;
    margin-bottom: 4px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.timeline-date .time {
    font-size: 14px;
    color: #6b7280;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.timeline-details {
    flex: 1;
}

.timeline-details h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #111827;
    font-family: 'Inter', sans-serif;
}

.timeline-details .event-description {
    font-size: 14px;
    color: #374151;
    margin-bottom: 4px;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.timeline-details .event-location {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Carrier Info */
.carrier-info {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #f1f5f9;
}

.carrier-info h4 {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.carrier-details {
    display: flex;
    align-items: center;
    gap: 12px;
}

.carrier-name {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    color: #111827;
}

.tracking-number-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #111827;
    text-decoration: underline;
    cursor: pointer;
    margin-left: 12px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

/* Product Section */
.product-section {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    margin-bottom: 24px;
}

/* Customer Information Section */
.customer-info-section {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    margin-bottom: 60px;
}

.customer-info-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.customer-info-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.customer-info-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.customer-info-header p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Simple Grid Shipping Details */
.shipping-details {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    margin-top: 8px;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px 20px;
    align-items: start;
}

.detail-row {
    display: contents;
}

.detail-label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    font-family: 'Inter', sans-serif;
    text-align: left;
    align-self: start;
}

.detail-value {
    font-size: 14px;
    font-weight: 400;
    color: #111827;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    white-space: normal;
    word-break: normal;
    align-self: start;
}

.detail-value.empty {
    color: #9ca3af;
    font-style: italic;
}

.detail-value.order-highlight {
    color: #3b82f6;
    font-weight: 600;
}

.address-value {
    white-space: normal !important;
    line-height: 1.5 !important;
}

/* Verify Section */
.verify-section {
    text-align: center;
}

.verify-text {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.verify-button-inline {
    background: #111827;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.verify-button-inline:hover {
    background: #374151;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal {
    background: white;
    border-radius: 16px;
    padding: 32px;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid #e5e7eb;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.modal-close:hover {
    background: #f3f4f6;
}

.modal h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    color: #111827;
}

.modal .input-field {
    margin-bottom: 16px;
}

.verify-button {
    width: 100%;
    padding: 16px;
    background: #111827;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
}

.verify-button:hover {
    background: #374151;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
    background: white;
    padding: 40px 0;
    margin-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #374151;
    text-decoration: underline;
}

/* Focus states for accessibility */
.track-button:focus,
.verify-button:focus,
.verify-button-inline:focus,
.tab:focus {
    outline: 2px solid #111827;
    outline-offset: 2px;
}

.input-field:focus {
    outline: none;
    border-color: #111827;
    box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.1);
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Performance optimizations */
.timeline-content {
    transform: translateZ(0); /* Force hardware acceleration */
}

.spinner {
    transform: translateZ(0); /* Force hardware acceleration */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        width: 100%;
        min-width: 320px;
        padding: 0 20px;
        min-height: 100vh;
        justify-content: flex-start;
    }
    
    .results-section {
        min-width: 320px;
        max-width: 100%;
        margin: 0;
    }

    .header {
        padding: 30px 0 20px;
        text-align: center;
    }

    .logo {
        width: 50px;
        height: 50px;
    }

    .language-selector {
        top: 20px;
        right: 20px;
        font-size: 13px;
    }

    .tracking-box {
        padding: 32px 20px;
        border-radius: 16px;
        max-width: 100%;
        min-width: 280px;
        margin: 20px auto;
        box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.1);
    }

    .tracking-box h1 {
        font-size: 26px;
        margin-bottom: 28px;
        line-height: 1.2;
    }

    .tab-selector {
        margin-bottom: 28px;
        border-bottom: 1px solid #e2e8f0;
    }

    .tab {
        font-size: 15px;
        padding: 0 16px 12px;
        min-width: 120px;
        text-align: center;
    }

    #trackingInputs {
        gap: 16px;
        margin-bottom: 24px;
    }

    .input-field {
        padding: 16px;
        font-size: 16px;
        border-radius: 10px;
    }

    .track-button {
        padding: 16px 24px;
        font-size: 16px;
        border-radius: 10px;
        font-weight: 600;
    }

    .error-message {
        padding: 16px;
        font-size: 14px;
        border-radius: 10px;
        margin-bottom: 16px;
    }

    /* Results section mobile adjustments */
    .back-button {
        margin-bottom: 20px;
        font-size: 14px;
    }

    .multiple-shipments-notice {
        padding: 14px 16px;
        font-size: 14px;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .tracking-status {
        padding: 24px 16px;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .status-header h2 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .status-subtext {
        font-size: 15px;
    }

    .progress-container {
        padding: 0 8px;
        margin-bottom: 32px;
    }

    .step-label {
        font-size: 10px;
        margin-top: 8px;
    }

    .timeline-header {
        padding: 12px 8px;
    }

    .timeline-header span {
        font-size: 15px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 8px;
        padding: 16px 8px;
        align-items: flex-start;
    }

    .timeline-date {
        width: auto;
        margin-bottom: 4px;
    }

    .timeline-date .date {
        font-size: 13px;
    }

    .timeline-date .time {
        font-size: 13px;
    }

    .timeline-details h3 {
        font-size: 15px;
    }

    .timeline-details .event-description {
        font-size: 14px;
    }

    .timeline-details .event-location {
        font-size: 13px;
    }

    .product-section {
        padding: 20px 16px;
        border-radius: 12px;
        margin-bottom: 30px;
    }

    .verify-text {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .verify-button-inline {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Footer adjustments */
    .footer {
        padding: 30px 0;
        margin-top: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-links a {
        font-size: 14px;
    }

    /* Modal adjustments */
    .modal {
        margin: 20px;
        padding: 24px;
        border-radius: 12px;
        max-width: calc(100vw - 40px);
    }

    .modal h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .verify-button {
        padding: 14px;
        font-size: 15px;
    }

    /* Shipment tabs mobile */
    .shipment-tabs {
        gap: 8px;
        margin-bottom: 20px;
    }

    .shipment-tab {
        padding: 8px 12px;
        font-size: 13px;
        border-radius: 16px;
    }

    /* Carrier info mobile */
    .carrier-info {
        margin-top: 20px;
        padding-top: 20px;
    }

    .carrier-info h4 {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .carrier-name {
        font-size: 15px;
    }

    .tracking-number-link {
        font-size: 14px;
        margin-left: 8px;
    }
    
    /* Customer info mobile */
    .customer-info-section {
        padding: 20px 16px;
        border-radius: 12px;
        margin-bottom: 30px;
    }
    
    .customer-info-header h3 {
        font-size: 16px;
    }
    
    .customer-info-header p {
        font-size: 13px;
    }
    
    .customer-info-icon {
        width: 14px;
        height: 14px;
    }
    
    /* Mobile Grid Layout */
    .shipping-details {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 20px;
        border-radius: 10px;
        margin-top: 6px;
    }
    
    .detail-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 4px;
        margin-bottom: 12px;
    }
    
    .detail-row:last-child {
        margin-bottom: 0;
    }
    
    .detail-label {
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 0;
    }
    
    .detail-value {
        font-size: 13px;
        margin-top: 0;
    }
    
    .address-value {
        line-height: 1.6;
    }
    
    /* CAPTCHA mobile */
    .helper-text {
        margin: 16px 0 12px 0;
        padding: 0 16px;
    }
    
    .helper-text p {
        font-size: 12px;
    }
    
    .captcha-container {
        margin: 20px 0;
    }
    
    .cf-turnstile {
        width: 100% !important;
        max-width: none !important;
        min-width: 280px;
        margin: 12px 0 !important;
    }
    
    .cf-turnstile > div,
    .cf-turnstile iframe {
        width: 100% !important;
        max-width: none !important;
        min-width: 280px !important;
        margin: 0 !important;
        border-radius: 10px !important;
    }
    
    .captcha-note {
        font-size: 11px;
        margin-top: 8px;
    }
}