
header a img {
    width: 120px; /* Adjust size */
    margin-right: 15px;
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f5f5f5;
}

header {
    background: #ADD8E6;
    color: white;
    text-align: center;
    padding: 40px;
}

nav {
    background: #ADD8E6;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    text-align: center;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    text-decoration: underline;
}

.content {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 80%;
    max-width: 1000px;
    margin: 40px auto;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.text {
    flex: 1;
}

.image {
    flex: 1;
}

.image img {
    width: 100%;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

.image img:hover {
    transform: scale(1.05);
}

/* Apply Section Styling */
.apply-container {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 5px;
    width: 80%;
    max-width: 800px;
    margin: auto;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #385741;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #ADD8E6;
}

/* Footer Formatting */
footer {
    background: #ADD8E6;
    color: white;
    padding: 40px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.footer-links div {
    text-align: left;
    max-width: 200px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin: 5px 0;
}

footer ul li a {
    color: white;
    text-decoration: none;
}

footer ul li a:hover {
    text-decoration: underline;
}

/* Courses Page Styling */
.page-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin: 40px 0;
    color: #213627;
}

.course {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 80%;
    max-width: 1000px;
    margin: 40px auto;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.course.reverse {
    flex-direction: row-reverse;
}

.course-text {
    flex: 1;
    text-align: left;
}

.course-image {
    flex: 1;
}

.course-image img {
    width: 100%;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

.course-image img:hover {
    transform: scale(1.05);
}

/* Apply Button Styling */
.apply-button {
    display: block;
    width: 150px;
    text-align: center;
    padding: 12px;
    background: #ADD8E6;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.apply-button:hover {
    background: #213627;
    transform: scale(1.05);
}

/* About Us Page Styling */
.page-title {
    text-align: center;
    font-size: 42px;
    font-weight: bold;
    margin: 60px 0;
    color: #213627;
}

.container {
    width: 80%;
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.intro-text {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.history-text {
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
    margin-top: 20px;
}

/* Principal Section */
.principal-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.principal-text {
    flex: 1;
    text-align: left;
}

.principal-image {
    flex: 1;
}

.principal-image img {
    width: 100%;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

.principal-image img:hover {
    transform: scale(1.05);
}

.principal-quote {
    font-style: italic;
    font-size: 20px;
    color: #213627;
    margin: 20px 0;
}

/* Core Values Section */
.value-list {
    list-style-type: square;
    padding-left: 30px;
    font-size: 18px;
}

/* Facilities Section */
.facility-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.facility-images img {
    width: 30%;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

.facility-images img:hover {
    transform: scale(1.05);
}

/* Apply Page Styling */
.page-title {
    text-align: center;
    font-size: 42px;
    font-weight: bold;
    margin: 60px 0;
    color: #213627;
}

.container {
    width: 80%;
    max-width: 800px;
    margin: auto;
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    text-align: left;
}

label {
    font-size: 20px;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

input, select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 18px;
}

input:focus, select:focus {
    border-color: #213627;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 115, 230, 0.3);
}

button.cta-button {
    width: 100%;
    padding: 18px;
    background: #213627;
    color: white;
    font-size: 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

button.cta-button:hover {
    background: #213627;
    transform: scale(1.05);
}

/* Contact Page Styling */
.page-title {
    text-align: center;
    font-size: 42px;
    font-weight: bold;
    margin: 60px 0;
    color: #213627;
}

.container {
    width: 80%;
    max-width: 800px;
    margin: auto;
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
}

/* Contact Boxes */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
}

.contact-box {
    background: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    width: 45%;
    text-align: left;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.contact-box h2 {
    color: #213627;
}

/* Contact Form */
form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

label {
    font-size: 18px;
    font-weight: bold;
    display: block;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 18px;
}

input:focus, textarea:focus {
    border-color: #213627;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 115, 230, 0.3);
}

button.cta-button {
    width: 100%;
    padding: 18px;
    background: #385741;
    color: white;
    font-size: 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

button.cta-button:hover {
    background: #213627;
    transform: scale(1.05);
}

/* Events Page Styling */
.page-title {
    text-align: center;
    font-size: 42px;
    font-weight: bold;
    margin: 60px 0;
    color: #213627;
}

.container {
    width: 80%;
    max-width: 1000px;
    margin: auto;
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
}

/* Open Days & Upcoming Events */
.open-days {
    list-style-type: square;
    padding-left: 30px;
    font-size: 18px;
    text-align: left;
}

/* Event Formatting */
.event {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    margin: 40px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.event.reverse {
    flex-direction: row-reverse;
}

.event-image {
    flex: 1;
}

.event-image img {
    width: 100%;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

.event-image img:hover {
    transform: scale(1.05);
}

.event-text {
    flex: 1;
    text-align: left;
}

#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ADD8E6;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 16px;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.2);
}

#cookieBanner button {
    background-color: #ffcc00;
    color: #385741;
    border: none;
    padding: 8px 15px;
    font-size: 16px;
    cursor: pointer;
    margin-left: 10px;
    border-radius: 5px;
}

.cookie-link {
    color: #ffcc00;
    margin-left: 15px;
    text-decoration: underline;
}

#cookieBanner button:hover {
    background-color: #ffaa00;
}
