/* welcome-book.css — Styles for Welcome Book page */

.welcome-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2C3F4F;
}

h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #A55E33;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.quick-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    flex: 1 1 calc(33% - 20px);
    background: #f7f7f7;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.info-card h2 {
    font-size: 1.3rem;
    color: #A55E33;
    margin-bottom: 10px;
}

.pdf-section {
    margin-bottom: 40px;
}

.cta-links ul {
    list-style: none;
    padding: 0;
}

.cta-links li {
    margin: 5px 0;
}

.cta-links a {
    color: #A55E33;
    text-decoration: none;
}

.cta-links a:hover {
    text-decoration: underline;
}

/* Make sure footer always stays at the bottom */
html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}
main {
    flex: 1 0 auto;
}
footer {
    flex-shrink: 0;
}
