/* Reset some default styles */
body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

/* Set a background color and text color for the entire page */
body {
    font-family: 'Avenir Next', Arial, sans-serif; /* Match the SRK website's font */
    background-color: #3939d8;
    color: #333;
    line-height: 1.6;
}

/* Style the header and navigation */
header {
    background-color: #ffd700; /* Gold background for the navigation bar */
    color: #131212;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.top-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.logo a {
    color: #fff;
    font-size: 32px;
    text-decoration: none;
}

.nav-links {
    list-style: none;
}

.nav-links li {
    display: inline-block;
    margin-inline: 0% 15%;
    writing-mode: horizontal-tb;
}

.nav-links a {
    color: #616b09;
    text-decoration: none;
    font-weight: bold;
    font-size: 22px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #b49d16;
}

/* Style the main content area */
main {
    background-color: #fff;
    border-radius: 10px;
    margin: 20px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Style headings and paragraphs */
h1, h2, h3 {
    color: #3949ab;
    font-family: 'Avenir Next', Arial, sans-serif; /* Match the SRK website's font */
    margin-bottom: 10px;
}

p {
    margin-bottom: 20px;
}

/* Create a button style */
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3949ab;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #293781;
}

/* Style the footer */
footer {
    text-align: center;
    background-color: #3949ab;
    color: #fff;
    padding: 20px 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .top-nav {
        flex-direction: column;
    }

    .nav-links {
        text-align: center;
        margin-top: 20px;
    }

    .nav-links li {
        display: block;
        margin-bottom: 10px;
    }
}
/* Mobile-friendly styles for the header image */
.header-image-mobile {
    max-width: 100%; /* Make the image responsive by scaling it to the container width */
}