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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #FFFBF7;
    color: #2D2D2D;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo */
.logo {
    margin-bottom: 48px;
}

.logo img {
    max-width: 180px;
    height: auto;
}

/* Title */
h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 600;
    font-variant: small-caps;
    letter-spacing: 0.15em;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-align: center;
}

.tagline {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 24px;
    text-align: center;
}

/* Description */
.description {
    max-width: 520px;
    margin-bottom: 48px;
    text-align: center;
    padding: 32px 40px;
    position: relative;
}

.description::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4rem;
    color: #FFB480;
    line-height: 1;
    opacity: 0.6;
}

.description p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-top: 24px;
}

/* Steps */
.steps {
    width: 100%;
    margin-bottom: 40px;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 180, 130, 0.2);
}

.step-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #FFCBA4 0%, #FFB480 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 16px;
    margin-top: 2px;
}

.step-content {
    flex: 1;
}

.step-content p {
    font-size: 1rem;
    color: #444;
}

/* Step complete checkmark */
.step-number.step-done {
    background: linear-gradient(135deg, #6fcf97 0%, #27ae60 100%);
    font-size: 1rem;
}

/* Slack Button */
.slack-button-container {
    margin: 16px 0 24px 0;
    text-align: center;
}

.slack-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: #4A154B;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.1s ease;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 16px;
}

.slack-button:hover {
    background: #611f64;
    transform: translateY(-1px);
}

.slack-button svg {
    width: 22px;
    height: 22px;
}

/* FAQ Section */
.faq-section {
    width: 100%;
    margin-top: 16px;
}

.faq-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.faq-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 180, 130, 0.2);
}

.faq-label {
    flex-shrink: 0;
    min-width: 80px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #FFCBA4 0%, #FFB480 100%);
    color: #fff;
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-right: 16px;
    text-align: center;
}

.faq-content {
    flex: 1;
}

.faq-content p {
    font-size: 0.95rem;
    color: #444;
}

/* Footer */
footer {
    text-align: center;
    padding: 24px;
    color: #999;
    font-size: 0.85rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

footer a {
    color: #888;
    text-decoration: none;
}

footer a:hover {
    color: #FFB480;
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 40px 20px;
    }

    .logo img {
        max-width: 140px;
    }

    h1 {
        font-size: 2.2rem;
    }

    .faq-item {
        flex-direction: column;
    }

    .faq-label {
        margin-bottom: 12px;
        margin-right: 0;
    }

    .step {
        padding: 16px 18px;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}