body {
    color: white; 
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color:#001631; /* dark cyan blue */
    color: white; 
}

header {
    padding: 32px 32px;
    display: flex;
    align-items: center; /* aligns items vertically in the center */
    justify-content: center; /* centers items horizontally */
}

header a img {
    margin-right: 20px; /* Adds spacing between the logo and the title */
}

h1 {
    color: #197CFF; 
    margin: 0;
    font-size: 26px;
}

h2 {
    color: #197CFF; 
    margin: 0;
    font-size: 20px;
}

h3 {
    color: #EF8600; 
    margin: 0;
    font-size: 16px;
}

nav {
    padding: 10px 20px;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
}

nav a:hover {
    background: #FFB347; /* Softer orange on hover */
}

.content {
    padding: 20px;
    box-sizing: border-box;
}

.cta-buttons {
    display: flex;
    justify-content: center; /* Centers the buttons horizontally */
    gap: 10px; /* Adds space between buttons */
}

.call-to-action {
    display: block;
    width: 200px;
    margin: 10px; /* Adjust margin as needed */
    padding: 10px;
    text-align: center;
    background: #32CD32; /* Lime green for call to action buttons */
    color: white;
    text-decoration: none;
}

footer {
    color: #FFF;
    text-align: center;
    padding: 10px 20px;
    box-sizing: border-box;
}

footer a {
    color: #FFD700; /* Lemon yellow for links */
    text-decoration: none;
}

/* Max width for larger screens */
.container {
    max-width: 960px;
    margin: auto;
    overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header h1, nav a, .call-to-action, footer p {
        font-size: 16px;
    }
    nav a, .call-to-action {
        padding: 16px;
        font-size: 14px;
    }
    .content, header, nav, footer {
        padding: 16px;
    }
    header a img {
        width: 80px;
    }
    .cta-buttons {
        flex-direction: column; /* Stacks the buttons vertically on smaller screens */
        align-items: center; /* Aligns buttons to the center */
    }
    .call-to-action {
        width: 100%;
        box-sizing: border-box;
    }
}
