/* Base style */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    font-size: 18px;
}

/* Header and footer using IDs */
#main-header {
    background-color: #004080;
    color: white;
    text-align: center;
    padding: 1.5rem 0;
}

#main-header .container {
    text-align: center;
}

#main-header h1 {
    text-align: center;
    color: white;
    margin: 10px 0;
    font-size: 42px;
}

#main-header p,
#main-header .Tagline {
    text-align: center;
    color: white;
    margin: 10px 0;
    font-size: 18px;
}

#main-footer {
    background-color: #004080;
    color: white;
    text-align: center;
    padding: 25px;
    clear: both;
    margin-top: 40px;
}

#main-footer p {
    font-size: 16px;
    text-align: center;
    color: white;
    line-height: 1.8;
}

/* Navigation with BIGGER font */
nav {
    text-align: center;
    padding: 15px 0;
    background-color: #f0f0f0;
}

nav a {
    margin: 0 20px;
    text-decoration: none;
    color: #004080;
    display: inline-block;
    font-size: 18px;
    font-weight: normal;
}

/* ALL headings centered and BIGGER */
h1 {
    font-size: 42px;
    text-align: center;
    font-weight: bold;
}

h2 {
    font-size: 32px;
    text-align: center;
    font-weight: bold;
    margin: 30px 0 20px 0;
}

h3 {
    font-size: 24px;
    text-align: center;
    font-weight: bold;
}

/* ALL paragraphs centered and BIGGER */
p {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
}

/* Main content layout */
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
}

/* Center all sections */
.content-wrapper section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    padding: 20px;
}

.content-wrapper section h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 32px;
}

.content-wrapper section h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.content-wrapper section p {
    text-align: center;
    margin: 25px auto;
    font-size: 18px;
    line-height: 1.8;
}

/* ALL images inline and centered */
.content-wrapper section img {
    display: inline-block;
    margin: 15px;
    max-width: 45%;
    height: auto;
    vertical-align: middle;
}

/* Single images centered */
.content-wrapper section img:only-of-type {
    max-width: 650px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Bigger images for Activities page */
.intro h3 + img {
    max-width: 750px !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center main heading */
main h1 {
    text-align: center;
    font-size: 38px;
}

/* Remove floats */
.float-left,
.float-right {
    float: none;
    display: inline-block;
    margin: 15px;
    max-width: 45%;
    height: auto;
}
 
/* sections with class sectors */
.intro {
    max-width: 900px;
    text-align: center;
}

.benefits {
    max-width: 900px;
    text-align: center;
}

.images {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.images img {
    width: 350px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Center images in service sections */
.service-item img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 550px;
    width: 100%;
    height: auto;
}

/* Center text in service sections */
.service-item {
    text-align: center;
    margin-bottom: 35px;
}

.service-item h3 {
    font-size: 24px;
    text-align: center;
}

.service-item p {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
}

/* List styled with class - BIGGER text */
.benefits ul {
    list-style: square;
    padding-left: 2rem;
    text-align: left;
    display: inline-block;
}

.benefits ul li {
    font-size: 18px;
    line-height: 1.8;
}

/* Contact page styles */
.contact-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.contact-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-table th {
    background-color: #006994;
    color: white;
    padding: 18px;
    text-align: left;
    font-size: 20px;
}

.contact-table td {
    padding: 18px;
    border-bottom: 1px solid #ddd;
    font-size: 18px;
}

.contact-table tr:hover {
    background-color: #f5f5f5;
}

.contact-table td:first-child {
    font-weight: bold;
    color: #006994;
    width: 220px;
}

/* Feedback form */
.feedback-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}

.feedback-container h2 {
    font-size: 28px;
    text-align: center;
}

.feedback-container p {
    text-align: center;
    font-size: 18px;
}

.feedback-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px auto;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feedback-table th {
    background-color: #006994;
    color: white;
    padding: 18px;
    text-align: center;
    font-size: 20px;
}

.feedback-table td {
    padding: 18px;
    border: 1px solid #ddd;
    font-size: 18px;
}

.feedback-table label {
    font-weight: bold;
    color: #006994;
    font-size: 18px;
}

.feedback-table input[type="text"],
.feedback-table input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 18px;
}

.feedback-table textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    height: 160px;
    resize: vertical;
    font-size: 18px;
}

.submit-btn {
    background-color: #006994;
    color: white;
    padding: 14px 35px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    margin-top: 15px;
}

.submit-btn:hover {
    background-color: #004d6b;
}