/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Header Styling */
header {
    background-color: #2C8C84;
    padding: 60px;
    color: white;
    position: relative;
}

header h1 {
    font-size: 25px;
    margin: 0;
}

/* Position Back to Home Button */
.back-btn {
    color: white;
    font-size: 16px;
    text-decoration: none;
    position: absolute;
    top: 10px;
    left: 10px;
}

/* About Us Section Styling */
#about {
    background-color: #fff;
    padding: 50px 0;
}

#about h2 {
    font-size: 32px;
    color: #2C8C84;
    margin-bottom: 20px;
}

#about p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Mission Section Styling */
#mission {
    background-color: #fff;
    padding: 50px 0;
}

#mission h3 {
    font-size: 30px;
    color: #2C8C84;
    margin-bottom: 20px;
}

#mission p {
    font-size: 18px;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Vision Section Styling */
#vision {
    background-color: #f8f8f8;
    padding: 50px 0;
}

#vision h3 {
    font-size: 30px;
    color: #2C8C84;
    margin-bottom: 20px;
}

#vision p {
    font-size: 18px;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Social Media Icons */
.social-icons a {
    margin: 0 10px;
    font-size: 24px;
    color: #333;
}

.social-icons a:hover {
    color: #2C8C84;
}

/* General Container Styling */
.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

/* Footer Styling */
footer {
    background-color: #2C8C84;
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* Footer Logo */
.header-logo {
    width: 100px;
    margin-top: 10px;
}

/* Hover Effect for Links or Buttons */
a:hover,
button:hover {
    color: #fff;
    background-color: #333;
    transition: background-color 0.3s;
}

/* Fade-in Effect on Scroll */
#about,
#mission,
#vision {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

#about.fade-in,
#mission.fade-in,
#vision.fade-in {
    opacity: 1;
    transform: translateY(0);
}