/* Root Colors */
:root {
    --background: #ffffff;
    --foreground: #1a1a1a;
    --card: #ffffff;
    --border: #e5e5e5;
    --primary: #0056b3;
    --primary-foreground: #ffffff;
    --muted: #f5f5f5;
    --muted-foreground: #717171;
    --gray-light: #f3f4f6;
}

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

html {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

.main-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.hero-section {
    padding: 1.5rem 0.75rem 0.5rem;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 2rem 1rem 3rem;
    }
}

.hero-content {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Heading */
.heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .heading {
        font-size: 1.5rem;
    }
}

/* Description Box */
.description-box {
    width: 100%;
    max-width: 28rem;
    background-color: var(--gray-light);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .description-box {
        padding: 1rem 1rem;
        margin-bottom: 1.25rem;
    }
}

.description-text {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .description-text {
        font-size: 0.875rem;
    }
}

.description-text strong {
    color: var(--foreground);
    font-weight: 600;
}

/* Gift Card Image */
.gift-card-container {
    margin-bottom: 1rem;
    width: 100%;
    max-width: 28rem;
}

@media (min-width: 768px) {
    .gift-card-container {
        margin-bottom: 1.25rem;
    }
}

.gift-card-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Steps Container */
.steps-container {
    width: 100%;
    max-width: 28rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .steps-container {
        gap: 0.375rem;
        margin-bottom: 1.25rem;
    }
}

/* Step Box */
.step-box {
    border: 1px solid var(--border);
    background-color: var(--card);
    border-radius: 0.5rem;
    padding: 0.25rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: box-shadow 0.2s ease;
}

@media (min-width: 768px) {
    .step-box {
        padding: 0.375rem 1rem;
    }
}

.step-box:hover {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

@media (min-width: 768px) {
    .step-number {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
}

.step-text {
    font-size: 0.875rem;
    color: var(--foreground);
    font-weight: 500;
}

@media (min-width: 768px) {
    .step-text {
        font-size: 0.875rem;
    }
}

/* CTA Button */
.cta-button {
    width: 100%;
    max-width: 28rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: 0.5rem;
    padding: 0.6rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease;
}

@media (min-width: 768px) {
    .cta-button {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
}

.cta-button:hover {
    background-color: #003d82;
}

.cta-button:active {
    opacity: 0.9;
}

/* Disclaimer */
.disclaimer-text {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.75rem;
    max-width: 28rem;
    line-height: 1.4;
}

/* Progress Section */
.progress-section {
    padding: 0.75rem 0;
}

@media (min-width: 768px) {
    .progress-section {
        padding: 1rem 0;
    }
}

.progress-container {
    max-width: 48rem;
    margin: 0 auto;
    padding: 0 0.75rem;
}

@media (min-width: 768px) {
    .progress-container {
        padding: 0 1rem;
    }
}

.progress-box {
    max-width: 28rem;
    margin: 0 auto;
    border: 1px solid var(--border);
    background-color: var(--card);
    border-radius: 0.5rem;
    padding: 0.75rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .progress-box {
        padding: 1rem;
    }
}

.progress-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.progress-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .progress-title {
        font-size: 0.875rem;
    }
}

.progress-counter {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .progress-counter {
        font-size: 0.875rem;
    }
}

.progress-bar-wrapper {
    width: 100%;
    background-color: var(--muted);
    border-radius: 9999px;
    height: 0.375rem;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.progress-bar {
    background-color: var(--primary);
    height: 100%;
    border-radius: 9999px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .progress-text {
        font-size: 0.875rem;
    }
}

.progress-text strong {
    color: var(--foreground);
}

/* FAQ Section */
.faq-section {
    padding: 1.5rem 0.75rem 0.5rem;
}

@media (min-width: 768px) {
    .faq-section {
        padding: 2.5rem 1rem 4rem;
    }
}

.faq-container {
    max-width: 56rem;
    margin: 0 auto;
}

.faq-heading {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    color: var(--foreground);
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .faq-heading {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

/* Accordion */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .accordion {
        gap: 0.75rem;
    }
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    background-color: var(--card);
    overflow: hidden;
}

.accordion-trigger {
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    text-align: left;
    transition: background-color 0.2s ease;
}

@media (min-width: 768px) {
    .accordion-trigger {
        padding: 1rem;
    }
}

.accordion-trigger:hover {
    background-color: var(--muted);
}

.accordion-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    margin-left: 0.5rem;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 0.75rem;
}

@media (min-width: 768px) {
    .accordion-content {
        padding: 0 1rem;
    }
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .accordion-item.active .accordion-content {
        padding-bottom: 1rem;
    }
}

.accordion-content p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    background-color: var(--card);
    margin-top: auto;
    padding: 1rem 0.75rem;
}

@media (min-width: 768px) {
    .footer {
        padding: 1.5rem 1rem;
    }
}

.footer-content {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

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

@media (min-width: 768px) {
    .footer-links {
        gap: 1rem;
        font-size: 0.875rem;
    }
}

.footer-link {
    color: var(--primary);
    text-decoration: none;
    transition: text-decoration 0.2s ease;
}

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

.footer-separator {
    color: var(--muted-foreground);
}

.footer-text {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .footer-text {
        font-size: 0.875rem;
    }
}
