/* CSS Document */
/* styles.css - Simply Starters Web Design */
/* ---------- Color Palette Variables ---------- */
:root {
    --primary: #275A8A;   /* main blue */
    --accent: #E4B646;    /* gold */
    --bg: #f7f9fa;        /* off-white */
    --text: #19263A;      /* dark navy */
    --btn: #E4B646;       /* gold button */
    --btn-hover: #C49E33; /* darker gold */
    --white: #fff;
}

/* ---------- Base Styles ---------- */
body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--text);
    min-height: 100vh;
}

/* Header and Navigation */
.site-header {
    text-align: center;
    padding: 40px 15px 25px 15px;
    background: var(--white);
    border-bottom: 1px solid #e9e9ef;
}
.logo {
    width: 120px;
    height: auto;
    margin-bottom: 18px;
}
.site-title {
    margin: 0;
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 0.02em;
}
.site-tagline {
    font-size: 1.25rem;
    color: var(--accent);
    margin-top: 10px;
}

.site-nav {
    margin: 18px 0 0 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 28px;
    list-style: none;
}
.site-nav a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.09rem;
    transition: color 0.18s;
}
.site-nav a:hover {
    color: var(--accent);
}

/* Main Sections */
.section {
    max-width: 680px;
    margin: 36px auto;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 14px 0 rgba(25,38,58,0.07);
    padding: 2rem 1.5rem;
}
.section-title {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    margin-top: 0;
}

/* How It Works List */
.how-list {
    list-style: none;
    padding: 0;
}
.how-list li {
    font-size: 1.07rem;
    margin-bottom: 14px;
    padding-left: 1.8em;
    position: relative;
}
.how-list li img {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 7px;
    margin-left: -1.8em;
    position: absolute;
    left: 0;
    top: 2px;
}

/* CTA Button */
.cta-btn {
    display: inline-block;
    background: var(--btn);
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    border: none;
    border-radius: 28px;
    padding: 0.85em 2.2em;
    margin-top: 18px;
    cursor: pointer;
    box-shadow: 0 2px 10px 0 rgba(25,38,58,0.06);
    text-decoration: none;
    transition: background 0.18s;
}
.cta-btn:hover {
    background: var(--btn-hover);
}

/* Footer */
.site-footer {
    text-align: center;
    color: #888;
    font-size: 1rem;
    padding: 1.3em 0 0.8em 0;
    background: var(--white);
    margin-top: 36px;
    border-top: 1px solid #e9e9ef;
}

/* Responsive Design */
@media (max-width: 700px) {
    .section {
        margin: 24px 8px;
        padding: 1.5rem 0.8rem;
    }
    .site-header {
        padding: 30px 8px 15px 8px;
    }
    .site-title { font-size: 2rem; }
}

h1 {
  font-size: 2rem;       /* Or your preferred size */
  line-height: 1.2;
  font-weight: 700;
}
