:root {
    --green: #2ecc71;
    --green-dark: #27ae60;
    --yellow: #f9ca24;
    --orange: #f0932b;
    --pink: #fd79a8;
    --purple: #a29bfe;
    --bg: #fefdf8;
    --text: #2d3436;
    --text-light: #636e72;
    --radius: 16px;
}

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

body {
    font-family: 'Fredoka', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.badge {
    display: inline-block;
    background: var(--green);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

header h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Details Card */
.details-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
    border: 2px solid #f0f0f0;
}

.detail-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
}

.detail-row:not(:last-child) {
    border-bottom: 1px solid #f5f5f5;
}

.detail-row .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.detail-row strong {
    display: block;
    font-weight: 600;
    font-size: 1rem;
}

.detail-row .sub {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.1rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-block;
    background: var(--green);
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(46, 204, 113, 0.4);
}

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

.cta-note {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Info Section */
.info-section {
    margin-bottom: 2.5rem;
}

.info-section h2,
.faq-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

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

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step p {
    font-size: 1rem;
    font-weight: 500;
}

/* FAQ */
.faq-section {
    margin-bottom: 2.5rem;
}

details {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

summary {
    padding: 1rem 1.25rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

summary::before {
    content: '+';
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green);
    flex-shrink: 0;
    width: 1.5rem;
    text-align: center;
}

details[open] summary::before {
    content: '\2212';
}

summary::-webkit-details-marker {
    display: none;
}

details p {
    padding: 0 1.25rem 1rem 3.25rem;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Footer */
footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px dashed #e0e0e0;
}

footer p {
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-sub {
    color: var(--text-light);
    font-size: 0.8rem !important;
    margin-top: 0.25rem;
}

/* Fun background accents */
body::before {
    content: '';
    position: fixed;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--yellow);
    opacity: 0.15;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: var(--green);
    opacity: 0.1;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    header h1 {
        font-size: 2.3rem;
    }

    .container {
        padding: 1.5rem 1rem;
    }

    .cta-button {
        font-size: 1.1rem;
        padding: 0.9rem 2rem;
        display: block;
    }
}
