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

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

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    background: white;
    border-radius: 16px;
    padding: 48px 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
}

.logo-wrapper {
    margin-bottom: 24px;
}

.sephora-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.gift-card-wrapper {
    margin-bottom: 32px;
}

.gift-card {
    width: 100%;
    max-width: 190px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

.headline {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.2;
}

.subheadline {
    font-size: 18px;
    font-weight: 400;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.4;
}

.steps-container {
    text-align: left;
    max-width: 400px;
    margin: 0 auto 16px;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    gap: 16px;
    background: #f9fafb;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.step:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    background: #C22F3D;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(194, 47, 61, 0.2);
}

.step-text {
    font-size: 16px;
    color: #111827;
    padding-top: 6px;
    line-height: 1.6;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(135deg, #C22F3D, #a02030);
    color: white;
    font-size: 22px;
    font-weight: 700;
    padding: 20px 64px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 6px 20px rgba(194, 47, 61, 0.45);
    font-family: 'Inter', sans-serif;
    margin-top: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: 100%;
    max-width: 420px;
}

.cta-button:hover {
    filter: brightness(112%);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(194, 47, 61, 0.55);
}

.cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 3px 10px rgba(194, 47, 61, 0.35);
}

/* FAQ Section */
.faq-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
    text-align: left;
}

.faq-title {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 32px;
    text-align: center;
}

.faq-item {
    margin-bottom: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #d1d5db;
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    text-align: left;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-icon {
    font-size: 24px;
    color: #C22F3D;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #f9fafb;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 18px 20px;
}

.faq-answer p {
    margin: 0;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

.footer {
    text-align: center;
    padding: 24px 0;
    margin-top: 32px;
    font-size: 14px;
    color: #6b7280;
}

.footer-link {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-separator {
    margin: 0 12px;
    color: #d1d5db;
}

@media (max-width: 640px) {
    .container {
        padding: 20px 16px;
    }

    .content {
        padding: 32px 24px;
    }

    .headline {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .subheadline {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .step {
        padding: 16px;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .step-text {
        font-size: 15px;
    }

    .cta-button {
        font-size: 17px;
        padding: 16px 24px;
        width: 100%;
        max-width: 100%;
        box-shadow: 0 4px 12px rgba(194, 47, 61, 0.35);
        letter-spacing: 0.3px;
        margin-top: 20px;
    }

    .faq-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .faq-question {
        font-size: 15px;
        padding: 16px 18px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .faq-item.active .faq-answer {
        padding: 16px 18px;
    }
}
