* {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #0f0f0f url('/bg.jpg') center top;
    background-size: cover;
    background-attachment: fixed;
    overflow-x: hidden;
}

.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100vw;
    padding: 1rem 0;
    overflow-y: auto;
}

.center-container {
    background: rgba(1, 5, 30, 0.95);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
    width: 100%;
    max-width: min(900px, 95vw);
    margin: 0 1rem;
    border: 1px solid rgb(212, 183, 105);
    backdrop-filter: blur(10px);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgb(212, 183, 105);
}

.main-title {
    font-size: 1.75rem;
    font-weight: bold;
    color: rgb(220, 191, 113);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.subtitle {
    font-size: 1rem;
    color: rgb(200, 171, 93);
    margin: 0;
    font-weight: normal;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

fieldset {
    border: 1px solid rgb(212, 183, 105);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 0;
    background: rgba(1, 5, 30, 0.6);
}

legend {
    font-weight: bold;
    color: rgb(220, 191, 113);
    padding: 0 0.5rem;
    background: rgba(1, 5, 30, 0.95);
}

input[type="text"], input[type="email"], input[type="number"], input[type="time"] {
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.5rem;
    border: 1px solid rgb(212, 183, 105);
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    background: rgba(15, 20, 40, 0.8);
    color: rgb(220, 191, 113);
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="time"]:focus {
    outline: none;
    border-color: rgb(212, 183, 105);
    box-shadow: 0 0 0 2px rgba(212, 183, 105, 0.3);
}

input::placeholder {
    color: rgba(212, 183, 105, 0.6);
}

button[type="submit"] {
    color: rgb(212, 183, 105);
    background: transparent;
    border: 1px solid rgb(212, 183, 105);
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: inline-block;
    font-family: 'Segoe UI', Arial, sans-serif;
}

button[type="submit"]:hover {
    background: rgb(212, 183, 105);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 183, 105, 0.3);
}

button[type="submit"]:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(212, 183, 105, 0.2);
}

.date-inputs {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    margin-bottom: 1rem;
    width: 100%;
}

.date-inputs > div {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.date-inputs label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: rgb(220, 191, 113);
}

.date-inputs input {
    width: 100%;
    box-sizing: border-box;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
    color: rgb(220, 191, 113);
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.85rem;
    color: rgb(200, 171, 93);
    font-style: italic;
}

.payment-section {
    margin-top: 2rem;
    text-align: center;
}

.payment-button {
    color: rgb(212, 183, 105);
    background: transparent;
    text-decoration: none;
    border: 1px solid rgb(212, 183, 105);
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.payment-button:hover {
    background: rgb(212, 183, 105);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 183, 105, 0.3);
}

.back-button {
    color: rgb(212, 183, 105);
    background: transparent;
    text-decoration: none;
    border: 1px solid rgb(212, 183, 105);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.back-button:hover {
    background: rgb(212, 183, 105);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 183, 105, 0.3);
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
    text-align: center;
}

.info-section {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
}

.info-section h2 {
    margin-top: 0;
    color: #856404;
}

.contact-info {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
}

.contact-info h3 {
    margin-top: 0;
    color: #495057;
}

.navigation {
    text-align: center;
    margin: 2rem 0;
}

.email-section {
    grid-column: 1 / -1;
    margin-top: 1rem;
}

.email-section .form-group {
    max-width: 100%;
    margin: 0;
}

.footer {
    background: #000000;
    color: #ffffff;
    text-align: center;
    padding: 1.5rem 1rem;
    width: 100%;
    max-width: 100vw;
    border-top: 1px solid #333;
    flex-shrink: 0;
}

.footer-row {
    margin: 0.75rem 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: rgb(212, 183, 105);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-email {
    color: rgb(212, 183, 105);
    font-weight: 500;
    font-size: 1rem;
}

.footer-address {
    color: #cccccc;
    font-size: 0.9rem;
    font-style: italic;
}

.legal-content {
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.6;
}

.legal-title {
    font-size: 2rem;
    font-weight: bold;
    color: rgb(220, 191, 113);
    margin: 0 0 2rem 0;
    text-align: center;
    border-bottom: 2px solid rgb(212, 183, 105);
    padding-bottom: 1rem;
}

.legal-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgb(220, 191, 113);
    margin: 2rem 0 1rem 0;
    border-left: 4px solid rgb(212, 183, 105);
    padding-left: 1rem;
}

.legal-text {
    color: rgb(220, 191, 113);
    font-size: 1rem;
    margin: 1rem 0;
    text-align: justify;
}

.legal-list {
    color: rgb(220, 191, 113);
    margin: 1rem 0 1rem 2rem;
}

.legal-list li {
    margin: 0.5rem 0;
    color: rgb(220, 191, 113);
}

.legal-business-info {
    background: rgba(220, 191, 113, 0.1);
    border: 1px solid rgba(220, 191, 113, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0 2rem 0;
}

.legal-business-info p {
    margin: 0;
    line-height: 1.8;
}

.legal-business-info strong {
    color: rgb(212, 183, 105);
    font-weight: 600;
}

.back-to-home {
    text-align: center;
    margin: 3rem 0 1rem 0;
    padding-top: 2rem;
    border-top: 1px solid rgb(212, 183, 105);
}

.back-link {
    color: rgb(212, 183, 105);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgb(212, 183, 105);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.back-link:hover {
    background: rgb(212, 183, 105);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 183, 105, 0.3);
}

.result-content {
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

.result-title {
    font-size: 2rem;
    font-weight: bold;
    color: rgb(220, 191, 113);
    margin: 0 0 2rem 0;
    text-align: center;
    border-bottom: 2px solid rgb(212, 183, 105);
    padding-bottom: 1rem;
}

.result-text {
    color: rgb(220, 191, 113);
    font-size: 1.2rem;
    margin: 1.5rem 0;
    font-weight: 500;
}

.result-info {
    color: rgb(220, 191, 113);
    font-size: 1rem;
    margin: 1rem 0;
}

.highlight {
    color: rgb(212, 183, 105);
    font-weight: 600;
    background: rgba(212, 183, 105, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.debug-info {
    background: rgba(212, 183, 105, 0.1);
    border: 1px solid rgb(212, 183, 105);
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
    text-align: left;
}

.debug-info p {
    color: rgb(220, 191, 113);
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.debug-info strong {
    color: rgb(212, 183, 105);
}

.payment-instruction {
    color: rgb(220, 191, 113);
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem 0;
    font-weight: 500;
}

.error-message {
    color: #ff6b6b;
    font-size: 1.1rem;
    margin: 1.5rem 0;
    font-weight: 500;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid #ff6b6b;
    border-radius: 8px;
    padding: 1rem;
}

.preview-section {
    background: rgba(212, 183, 105, 0.05);
    border: 2px solid rgb(212, 183, 105);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.preview-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgb(220, 191, 113);
    margin: 0 0 1.5rem 0;
    text-align: center;
    border-bottom: 2px solid rgb(212, 183, 105);
    padding-bottom: 1rem;
}

.preview-content {
    line-height: 1.7;
}

.preview-greeting {
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(220, 191, 113, 0.1);
    border-radius: 8px;
    border-left: 4px solid rgb(212, 183, 105);
}

.preview-section-item {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(1, 5, 30, 0.3);
    border-radius: 8px;
    border-left: 3px solid rgb(212, 183, 105);
}

.preview-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgb(220, 191, 113);
    margin: 0 0 0.75rem 0;
}

.preview-text {
    color: rgb(220, 191, 113);
    font-size: 1rem;
    margin: 0.5rem 0;
    line-height: 1.6;
}

.preview-text strong {
    color: rgb(212, 183, 105);
    font-weight: 600;
}

.preview-fade {
    color: rgba(220, 191, 113, 0.6);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0.75rem 0 0 0;
    padding: 0.5rem;
    background: rgba(212, 183, 105, 0.1);
    border-radius: 6px;
    border: 1px dashed rgba(212, 183, 105, 0.3);
}

.preview-footer {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(220, 191, 113, 0.1);
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(212, 183, 105, 0.3);
}

.preview-signature {
    color: rgb(212, 183, 105);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

.payment-value-prop {
    background: rgba(220, 191, 113, 0.1);
    border: 2px solid rgb(212, 183, 105);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0 1.5rem 0;
    text-align: left;
}

.value-prop-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgb(220, 191, 113);
    margin: 0 0 1rem 0;
    text-align: center;
}

.value-prop-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-prop-list li {
    color: rgb(220, 191, 113);
    font-size: 1rem;
    margin: 0.75rem 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 183, 105, 0.2);
    font-weight: 500;
}

.value-prop-list li:last-child {
    border-bottom: none;
}

.thank-you-content {
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

.status-section {
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid;
}

.pending-status {
    background: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
}

.processing-status {
    background: rgba(0, 123, 255, 0.1);
    border-color: #007bff;
}

.success-status {
    background: rgba(40, 167, 69, 0.1);
    border-color: #28a745;
}

.error-status {
    background: rgba(220, 53, 69, 0.1);
    border-color: #dc3545;
}

.thank-you-title {
    font-size: 2rem;
    font-weight: bold;
    color: rgb(220, 191, 113);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.status-message {
    font-size: 1.2rem;
    color: rgb(220, 191, 113);
    margin: 1rem 0 2rem 0;
    font-weight: 500;
}

.status-details {
    text-align: left;
    background: rgba(1, 5, 30, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid rgb(212, 183, 105);
}

.status-details p {
    color: rgb(220, 191, 113);
    margin: 0.75rem 0;
    font-size: 1rem;
}

.status-details strong {
    color: rgb(212, 183, 105);
    font-weight: 600;
}

.progress-indicator {
    margin: 2rem 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(212, 183, 105, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, rgb(212, 183, 105), rgb(220, 191, 113));
    width: 70%;
    border-radius: 4px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.progress-text {
    color: rgb(200, 171, 93);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0.5rem 0;
}

.action-section {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.action-button {
    color: rgb(212, 183, 105);
    background: transparent;
    text-decoration: none;
    border: 1px solid rgb(212, 183, 105);
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 200px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.action-button:hover {
    background: rgb(212, 183, 105);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 183, 105, 0.3);
}

.action-button.primary {
    background: rgb(212, 183, 105);
    color: #1a1a1a;
}

.action-button.primary:hover {
    background: rgb(220, 191, 113);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 183, 105, 0.4);
}

.action-button.secondary {
    border-color: rgb(200, 171, 93);
    color: rgb(200, 171, 93);
}

.action-button.secondary:hover {
    background: rgb(200, 171, 93);
    color: #1a1a1a;
}

/* Contact section styles */
.contact-section {
    background: rgba(220, 191, 113, 0.1);
    border: 1px solid rgba(220, 191, 113, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}

.contact-title {
    color: rgb(220, 191, 113);
    font-size: 1.2em;
    margin-bottom: 10px;
}

.contact-text {
    color: rgb(220, 191, 113);
    margin-bottom: 15px;
}

.contact-details {
    color: rgb(220, 191, 113);
}

.contact-link {
    color: rgb(220, 191, 113);
    text-decoration: none;
    font-weight: bold;
}

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

.order-id {
    font-family: monospace;
    background: rgba(220, 191, 113, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
}

/* Pricing section styles */
.pricing-section {
    margin: 20px 0;
    text-align: center;
    padding: 15px;
    background: rgba(220, 191, 113, 0.1);
    border: 2px solid rgba(220, 191, 113, 0.3);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.original-price {
    font-size: 1.2em;
    color: #999;
    text-decoration: line-through;
    font-weight: normal;
}

.discounted-price {
    font-size: 1.8em;
    color: rgb(220, 191, 113);
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.discount-label {
    font-size: 0.9em;
    color: rgb(220, 191, 113);
    font-weight: bold;
    background: rgba(220, 191, 113, 0.2);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(220, 191, 113, 0.4);
}

@media (max-width: 600px) {
    .main-content {
        padding: 0.5rem 0;
    }
    
    .center-container {
        padding: 1rem 0.5rem;
        max-width: 98vw;
        border-radius: 15px;
        background: rgba(1, 5, 30, 0.98);
        margin: 0 0.5rem;
    }

    .form-sections {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .main-title {
        font-size: 1.4rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }
    
    button[type="submit"] {
        font-size: 1.1rem;
        padding: 0.875rem 1.5rem;
    }
    
    .date-inputs {
        flex-direction: column;
    }

    fieldset {
        padding: 1rem;
        background: rgba(1, 5, 30, 0.8);
    }

    .footer {
        padding: 1rem 0.5rem;
    }

    .footer-links {
        gap: 1rem;
        flex-direction: column;
    }

    .footer-link {
        font-size: 0.9rem;
    }

    .footer-email {
        font-size: 0.9rem;
    }

    .footer-address {
        font-size: 0.8rem;
    }

    .legal-title {
        font-size: 1.6rem;
        margin: 0 0 1.5rem 0;
    }

    .legal-section-title {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.75rem 0;
    }

    .legal-text {
        font-size: 0.9rem;
        text-align: left;
    }

    .legal-list {
        margin: 1rem 0 1rem 1rem;
        font-size: 0.9rem;
    }

    .back-link {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }

    .result-title {
        font-size: 1.6rem;
        margin: 0 0 1.5rem 0;
    }

    .result-text {
        font-size: 1.1rem;
        margin: 1rem 0;
    }

    .result-info {
        font-size: 0.9rem;
    }

    .debug-info {
        padding: 0.75rem;
        margin: 1rem 0;
    }

    .debug-info p {
        font-size: 0.8rem;
    }

    .payment-instruction {
        font-size: 1rem;
        margin: 1rem 0 0.75rem 0;
    }

    .error-message {
        font-size: 1rem;
        padding: 0.75rem;
    }

    .payment-button {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }

    .back-button {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .preview-section {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .preview-title {
        font-size: 1.3rem;
        margin: 0 0 1rem 0;
        padding-bottom: 0.75rem;
    }

    .preview-greeting {
        margin-bottom: 1.5rem;
        padding: 0.75rem;
    }

    .preview-section-item {
        margin: 1rem 0;
        padding: 0.75rem;
    }

    .preview-section-title {
        font-size: 1rem;
        margin: 0 0 0.5rem 0;
    }

    .preview-text {
        font-size: 0.9rem;
        margin: 0.4rem 0;
    }

    .preview-fade {
        font-size: 0.8rem;
        padding: 0.4rem;
        margin: 0.5rem 0 0 0;
    }

    .preview-footer {
        margin-top: 1.5rem;
        padding: 0.75rem;
    }

    .preview-signature {
        font-size: 0.9rem;
    }

    .status-section {
        padding: 1.5rem 1rem;
        margin: 1.5rem 0;
    }

    .thank-you-title {
        font-size: 1.6rem;
        margin: 0 0 0.75rem 0;
    }

    .status-message {
        font-size: 1.1rem;
        margin: 0.75rem 0 1.5rem 0;
    }

    .status-details {
        padding: 1rem;
        margin: 1rem 0;
    }

    .status-details p {
        font-size: 0.9rem;
        margin: 0.5rem 0;
    }

    .progress-indicator {
        margin: 1.5rem 0;
    }

    .progress-bar {
        height: 6px;
        margin: 0.75rem 0;
    }

    .progress-text {
        font-size: 0.8rem;
    }

    .action-section {
        margin: 1.5rem 0;
        gap: 0.75rem;
    }

    .action-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-width: 180px;
    }

    .contact-section {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .contact-title {
        font-size: 1.1rem;
        margin: 0 0 0.75rem 0;
    }

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

    .contact-details p {
        font-size: 0.9rem;
    }

    .order-id {
        font-size: 0.8rem;
        padding: 0.15rem 0.4rem;
    }

    .payment-value-prop {
        padding: 1rem;
        margin: 1.5rem 0 1rem 0;
    }

    .value-prop-title {
        font-size: 1.1rem;
        margin: 0 0 0.75rem 0;
    }

    .value-prop-list li {
        font-size: 0.9rem;
        margin: 0.5rem 0;
        padding: 0.4rem 0;
    }
}

@media (max-width: 768px) {
    .form-sections {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .center-container {
        max-width: min(600px, 95vw);
        background: rgba(1, 5, 30, 0.97);
    }

    .footer-links {
        gap: 1.5rem;
    }

    .action-section {
        flex-direction: column;
        gap: 1rem;
    }

    .action-button {
        min-width: 220px;
    }
} 