/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jost', sans-serif;
    background-image: url("./Images/bgseamless.png"); /* Background image */
    background-repeat: repeat;
    background-size: 50%;
    line-height: 1.6;
    padding: 20px;
}

header {
    background-color: #070c28;
    color: white;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 6px solid #77a8ac;
}

.button.link {
  background: none!important;
  border: none;
  padding: 0!important;
  color: white;
  cursor: pointer;
}

.indexbanner {
    text-align: center; /* Center aligns the content */
    padding: 20px 0; /* Adds padding above and below the section */
}

.indexbanner img {
    max-width: 100%; /* Ensures the image is responsive and doesn't exceed the width of its container */
    height: auto; /* Maintains the aspect ratio of the image */
}


header img {
    width: 150px;
    height: auto;
    margin-left: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    margin-right: 20px;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: #77a8ac;
}

main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
}

.section-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

footer {
    background-color: #070c28;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

footer a {
    color: #77a8ac;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.text-box {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
}

.content-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.text-content {
    flex: 1;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #77a8ac;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.button:hover {
    background-color: #070c28;
}

.button:disabled {
    background-color: #070c28;
    color: grey;
    transition: none !important;
}

h1 {
    /* font-family: 'Oswald', sans-serif; */
    font-size: 50px; /* Default size for larger screens */
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-style: normal;
}


@media screen and (max-width: 768px) {
    h1 {
        font-size: 28px; /* Smaller size for mobile screens */
    }
}

h2 {
    /* font-family: 'Oswald', sans-serif; */
    font-size: 30px; /* Default size for larger screens */
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-style: normal;
}


@media screen and (max-width: 768px) {
    h2 {
        font-size: 24px; /* Smaller size for mobile screens */
    }
}



/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .content-container {
        flex-direction: column;
    }
}

/* Additional styles as needed */

.text-box ul {
    /* list-style-type: none; Remove bullet points */
    padding-left: 25px;
   /* margin: 20px 0;  Add margin for spacing */
}

.text-box ul li {
    /* margin-bottom: 10px; Space out the list items */
    /*  font-size: 1.1em; Slightly larger font size for readability */
    /* line-height: 1.6;  Improve line spacing */
}

/* Additional styling to make it more interesting */
#content.text-box {
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    border-left: 4px solid #77a8ac; /* Adds a colored border to the left */
    padding: 20px; /* Padding around the content */
}
