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

html, body {
    width: 100%;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: transparent;
    overflow: hidden;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: transparent;
}

.wrapper {
    width: 100%;
    max-width: 448px;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Timer Bar */
.timer-bar {
    background-color: #1e3a8a;
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 50;
}

.timer-bar span {
    font-weight: bold;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0.625rem;
    overflow-y: auto;
    overflow-x: hidden;
}

.main-content::-webkit-scrollbar {
    display: none;
}

.main-content {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Header Section */
.header-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.125rem;
    margin-bottom: 0.5rem;
}

.logo {
    font-size: 1.875rem;
    font-weight: bold;
    color: #1e3a8a;
    font-style: italic;
}

@media (min-width: 640px) {
    .logo {
        font-size: 3rem;
    }
}

.wholesale {
    color: #eab308;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.1em;
}

@media (min-width: 640px) {
    .wholesale {
        font-size: 1.125rem;
    }
}

.title {
    font-size: 1rem;
    font-weight: bold;
    color: #1e3a8a;
    text-align: center;
}

@media (min-width: 640px) {
    .title {
        font-size: 1.875rem;
    }
}

.subtitle {
    color: black;
    font-size: 0.75rem;
}

@media (min-width: 640px) {
    .subtitle {
        font-size: 0.875rem;
    }
}

/* Section Title */
.section-title {
    color: black;
    font-weight: 600;
    margin-bottom: 0.375rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
}

@media (min-width: 640px) {
    .section-title {
        margin-bottom: 0.75rem;
        font-size: 1rem;
    }
}

.chevron {
    width: 0.875rem;
    height: 0.875rem;
}

@media (min-width: 640px) {
    .chevron {
        width: 1rem;
        height: 1rem;
    }
}

/* Steps Section */
.steps-section {
    width: 100%;
    margin-bottom: 0.625rem;
}

@media (min-width: 640px) {
    .steps-section {
        margin-bottom: 1rem;
    }
}

.steps-box {
    background-color: white;
    border-radius: 0.5rem;
    padding: 0.625rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

@media (min-width: 640px) {
    .steps-box {
        padding: 1rem;
        gap: 0.75rem;
    }
}

.step-item {
    display: flex;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .step-item {
        gap: 0.75rem;
    }
}

.step-number {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background-color: #1e3a8a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

@media (min-width: 640px) {
    .step-number {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.step-text {
    color: #1f2937;
    font-size: 0.75rem;
    line-height: 1.25;
    padding-top: 0.125rem;
}

@media (min-width: 640px) {
    .step-text {
        font-size: 0.875rem;
        line-height: 1.5;
    }
}

/* Button */
.btn-start {
    width: 100%;
    background-color: #eab308;
    color: #1e3a8a;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-bottom: 0.625rem;
    font-size: 0.75rem;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
}

.btn-start:hover {
    background-color: #ca8a04;
}

@media (min-width: 640px) {
    .btn-start {
        padding: 0.75rem 1rem;
        margin-bottom: 1rem;
        font-size: 1rem;
    }
}

/* FAQ Section */
.faq-section {
    width: 100%;
    margin-bottom: 0.625rem;
}

@media (min-width: 640px) {
    .faq-section {
        margin-bottom: 1rem;
    }
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

@media (min-width: 640px) {
    .faq-container {
        gap: 0.5rem;
    }
}

.faq-item {
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-title {
    width: 100%;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1f2937;
    transition: background-color 0.2s;
}

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

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

.plus-icon {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: bold;
}

.faq-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1rem;
}

.faq-description.show {
    max-height: 300px;
    overflow: hidden;
    transition: max-height 0.3s ease-in;
}

.faq-description p {
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.5;
    padding: 0.75rem 0;
    border-top: 1px solid #e5e7eb;
}

/* Footer */
.footer {
    width: 100%;
    text-align: center;
    color: #9ca3af;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    margin-top: auto;
    padding-top: 0.375rem;
}

@media (min-width: 640px) {
    .footer {
        gap: 0.5rem;
        padding-top: 0.75rem;
    }
}

.footer-text {
    font-size: 0.6875rem;
    color: #9ca3af;
}

.footer-text.disclaimer {
    line-height: 1.25;
}

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

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 0.5rem;
    }

    .timer-bar {
        font-size: 0.625rem;
    }

    .header-section {
        margin-bottom: 0.375rem;
    }
}
