/* Color Palette from Logo */
:root {
    --orange: #f28c28;
    --navy: #1a3652;
    --light-grey: #d1d5db;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--light-grey);
    color: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin: 20px;
}

.logo {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 2rem;
}

h1 {
    color: var(--orange);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--navy);
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 10px 0;
}

.cta-button:hover {
    background-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 140, 40, 0.3);
}

.disclaimer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pro-bird {
    color: var(--navy);
    font-weight: bold;
    display: block;
    margin-top: 5px;
}

.section {
    text-align: left;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.section h2 {
    color: var(--orange);
    text-transform: uppercase;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.faq-item p {
    font-size: 0.95rem;
    color: #444;
    margin: 0;
}