/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

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

/* Header */
header {
    background: #002868;
    color: #fff;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    background: url('Mike.jpg') no-repeat center center/cover;
    text-align: center;
    color: white;
    padding: 100px 20px;
    background-color: rgba(0, 40, 104, 0.85);
    background-blend-mode: multiply;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 22px;
    margin-bottom: 20px;
}

.cta-button {
    background: #ffcc00;
    color: #002868;
    padding: 15px 25px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #e0b800;
}

/* Sections */
.content-section {
    background: white;
    padding: 50px 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

h2 {
    text-align: center;
    color: #002868;
}

ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

ul li {
    font-size: 18px;
    margin: 10px 0;
    font-weight: bold;
}

/* Sign-up Form */
.signup-section {
    background: #002868;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.signup-section form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.signup-section input, select {
    width: 80%;
    max-width: 400px;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
    font-size: 16px;
}

.signup-section button {
    background: #ffcc00;
    color: #002868;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.signup-section button:hover {
    background: #e0b800;
}

.disclaimer {
    font-size: 14px;
    margin-top: 15px;
    max-width: 400px;
    text-align: center;
    color: #f4f4f4;
}

.disclaimer a {
    color: #ffcc00;
    text-decoration: underline;
}

/* Footer */
footer {
    background: #002868;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}
