 /* Reset and basic styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
    padding: 0;
    margin: 0;
}

/* Global container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
}

/* Header Section with Hero Image */
header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    /* background: url('./images/iaoscp-hero-image.jpg') center/cover no-repeat;*/
	opacity: 0.1;
    height: 60vh;
    color: black;
}

header h1 {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 10px;
    padding-bottom: 15px;
    position: relative;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

header p {
    font-size: 2em;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 5px;
    padding-top: 35px;
    position: relative;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

/* Main Content Sections */
.section {
    margin-bottom: 50px;
}

.section h2 {
    font-size: 2.2em;
    color: #00076b;
    margin-bottom: 20px;
    text-align: left;
}

.section p {
    font-size: 1.1em;
    color: #555;
    text-align: left;
    line-height: 1.8;
}

.section .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #00076b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.section .cta-button:hover {
    background-color: #1558b0;
}

/* Footer Section */
footer {
    background-color: #00076b;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 1em;
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Responsive design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5em;
    }

    header p {
        font-size: 1.2em;
    }

    .section h2 {
        font-size: 1.8em;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 1.1em;
    }
}
