/* Basic Reset & Body Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Header */
header {
    background: #333;
    color: #fff;
    padding-top: 20px;
    min-height: 70px;
    border-bottom: #0779e4 3px solid;
    text-align: center;
}

header h1 {
    margin: 0;
    padding: 0;
    font-size: 2.5em;
    line-height: 1em;
}

header .tagline {
    font-size: 1.1em;
    opacity: 0.9;
    margin-top: 5px;
}

/* Main Content Sections */
section {
    padding: 40px 0;
    border-bottom: #ccc 1px solid;
    background: #fff;
    margin-bottom: 20px;
}

section#hero {
    background: #0779e4; /* A nice blue */
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

section#hero h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
}

section#hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

section h3 {
    color: #0779e4;
    font-size: 2em;
    text-align: center;
    margin-bottom: 30px;
}

section p {
    margin-bottom: 15px;
    text-align: justify;
}

/* Buttons */
.btn {
    display: inline-block;
    color: #fff;
    background: #0056b3; /* Darker blue */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background: #004494;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: #fff;
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    header h1 {
        font-size: 2em;
    }

    section#hero h2 {
        font-size: 2em;
    }
}
