/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* Header Styles */
header {
    background-color: #0063A1; /* Comcast Blue */
    color: white;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    width: 150px;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

header nav ul li a:hover {
    color: #FFCC00; /* Comcast Yellow on hover */
}

/* CTA Button in Header */
.cta-btn {
    background-color: white; /* White background */
    color: black; /* Black text */
    padding: 12px 25px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-left: 20px; /* Space between navigation links and CTA button */
    border: 2px solid black; /* Black border */
}

.cta-btn:hover {
    background-color: #0063A1; /* Blue background on hover */
    color: white; /* White text on hover */
    border: 2px solid #005A8D; /* Darker blue border on hover */
}

/* Main Section Styles */
main {
    margin-top: 80px; /* Space for fixed header */
    padding: 40px 0;
    background-color: #ffffff;
}

section h1,
section h2 {
    color: #0063A1;
    margin-bottom: 20px;
}

section p {
    font-size: 16px;
    margin-bottom: 15px;
}

section ol,
section ul {
    font-size: 16px;
    margin-left: 20px;
}

section ol li,
section ul li {
    margin-bottom: 10px;
}

/* Links */
a {
    color: #0063A1;
    text-decoration: none;
}

a:hover {
    color: #FFCC00;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer a {
    color: #FFCC00;
    text-decoration: none;
}

footer a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: center;
    }

    header nav ul {
        margin-top: 10px;
        flex-direction: column;
        align-items: center;
    }

    header nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .container {
        width: 90%;
    }

    footer {
        padding: 10px 0;
    }

    /* Adjust CTA Button on Mobile */
    .cta-btn {
        padding: 10px 20px;
        font-size: 14px;
        margin-top: 10px;
    }
}
