﻿
header {
    background: #1b2a41;
    padding: 10px 0;
}

    header h1 {
        margin: 0;
    }

nav {
    margin-top: 10px;
}

    nav a {
        color: white;
        margin-right: 20px;
        text-decoration: none;
        font-weight: bold;
    }

        nav a:hover {
            text-decoration: underline;
        }

.container h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

.hero {
    padding: 20px 0;
    text-align: center;
}

    .hero h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 18px;
        margin-bottom: 10px;
    }



.cta {
    display: inline-block;
    background: blue;
    color: white;
    padding: 8px 12px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 4px;
}

    .cta:hover {
        text-decoration: underline;
    }



.section {
    padding: 10px 0;
}

    .section.light {
        background: #f7f7f7;
    }

    .section h2 {
        margin-bottom: 20px;
        font-size: 20px;
    }

    .section p {
        margin-bottom: 15px;
    }

    .section ul {
        margin: 10px 0;
        padding-left: 20px;
    }



.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 12px;
    background: blue;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size:18px;
}

    .btn:hover {
        text-decoration: underline;
    }



.cta-section {
    padding: 20px 0;
}

    .cta-section h2 {
        margin-bottom: 10px;
    }
