body {
    font-family: 'Raleway', sans-serif;
    background-color: #f5f9f8;
    color: #333333;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background-color: #e0f7fa;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: auto;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
}

.logo:hover {
    transform: rotate(360deg);
}

.company-name {
    font-family: 'Tangerine', cursive;
    font-size: 3em;
    color: #00796b;
    margin: 0;
    transition: color 0.3s, transform 0.3s;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav li {
    position: relative;
}

nav a {
    text-decoration: none;
    font-size: 1.2em;
    color: #004d40;
    font-weight: 600;
    padding: 10px;
    display: inline-block;
    transition: color 0.3s, border-bottom 0.3s, background-color 0.3s;
    border-radius: 4px;
}

nav a:hover, nav a.active {
    color: #00796b;
    border-bottom: 2px solid #00796b;
    background-color: rgba(0, 121, 107, 0.1);
}

main {
    padding: 40px 20px;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #b2dfdb, #e0f7fa);
    padding: 50px 20px;
}

.hero-text {
    max-width: 100%;
    font-size: 1.5em; /* Increase the overall font size */
}

.hero-text h1 {
    font-size: 1.5em; /* Larger heading */
    color: #00796b;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.0em; /* Increase paragraph font size */
    color: #555555;
    margin-bottom: 20px;
}

.mental-health-img {
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

button#motivateBtn {
    padding: 10px 20px;
    background-color: #00796b;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.8em;
    transition: background-color 0.3s ease;
}

button#motivateBtn:hover {
    background-color: #004d40;
}

#quoteBox {
    margin-top: 20px;
    font-size: 1.5em;
    color: #00796b;
    font-style: italic;
    transition: opacity 0.5s ease, color 0.5s ease; 
    opacity: 1;
}



.info-section {
    background-color: #e3f2fd;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-section h2 {
    font-size: 2.5em;
    color: #00796b;
}

.info-section p {
    font-size: 1.2em;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px;
}

.info-images {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.info-images img {
    width: 250px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-images img:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Social Media Icons Container */
.social-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.social-icons a {
    font-size: 24px;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    color: #fff;
}
/* Facebook Icon */
.social-icons .facebook {
    background-color: #1877F2;
}
.social-icons .facebook:hover {
    background-color: #145dbf;
}
/* Instagram Icon */
.social-icons .instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-icons .instagram:hover {
    transform: scale(1.1);
}
/* WhatsApp Icon */
.social-icons .whatsapp {
    background-color: #25D366;
}

.social-icons .whatsapp:hover {
    background-color: #1da851;
}

footer {
    background-color: #e0f7fa;
    padding: 10px;
    font-size: 1em;
    color: #00796b;
}
