

body {
    margin: 0;
    padding: 0;
    background: #E7F5F3;
    color: #080808;
    box-sizing: border-box;
    width: 100%;
}

/* MAIN LAYOUT */

.about-who-where-title {
    font-size: 48px;
    font-family: "HandyCasual", "Happy monkey", sans-serif;
    color: #5d8a8a;
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    text-align: center;
}

.about-who-where-title h1{ 
    font-size: 3rem;
    margin: 0;
}

/*.about-who-where-title h2{ 
    font-size: 3.5rem;
    margin: 0;
}

.about-who-where-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 3px;
    background: #5cb85c;
    animation: expand 1s ease-out 0.5s both;
} */

.content {
    margin-top: 60px;
    display: flex;
    justify-content: space-around;
    padding: 0 50px;
    margin-bottom: 80px;
}

/* BLOCKS */
.block {
    width: 30%;
    text-align: center;
}

.title-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.icon {
    width: 100px;
    height: auto;
    animation: float 4s ease-in-out infinite;
    border-radius: 50%;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    max-width: 700px;
    margin: auto;
    color: #5d8a8a;
    font-family: "HandyCasual", "Happy monkey", sans-serif;
    font-weight: lighter;
}

/* TEXT CARD */
.card {
    background: white;
    padding: 25px 30px;
    border-radius: 40px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    line-height: 1.7;
    text-align: left;
    animation: fadeInCard 0.8s ease forwards;
    font-family: 'GlacialIndifference-Bold', "Teachers", "Lexend", "Didact Gothic", Helvetica, sans-serif; 
    letter-spacing: 1px;
    font-size: 1.5rem;
}



/* FLOATING ICON EFFECT */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* FADE-UP ANIMATION */
.fade-up {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CARD FADE */
@keyframes fadeInCard {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* RESPONSIVE */

/* Tablet (<=1200px) tweaks */
@media (max-width: 1200px) {
    .about-who-where-title { font-size: 40px; }
    .about-who-where-title h1 { font-size: 2.6rem; }
    .content { padding: 0 30px; gap: 30px; }
    .block { width: 33%; }
    .icon { width: 84px; }
    .section-title { font-size: 2.2rem; }
    .card { padding: 22px 26px; font-size: 1.35rem; }
}

/* Medium / small tablets (<=900px) */
@media (max-width: 900px) {
    .about-who-where-title { font-size: 36px; }
    .about-who-where-title h1 { font-size: 2.25rem; }
    .content { padding: 0 20px; gap: 24px; flex-wrap: wrap; justify-content: center; }
    .block { width: 45%; margin-bottom: 24px; }
    .icon { width: 70px; }
    .section-title { font-size: 1.9rem; }
    .card { padding: 20px 18px; font-size: 1.25rem; }
}

/* Small phones (<=480px) */
@media (max-width: 480px) {
    .about-who-where-title { font-size: 28px; }
    .about-who-where-title h1 { font-size: 1.8rem; }
    .content { padding: 0 12px; flex-direction: column; gap: 18px; }
    .block { width: 100%; margin-bottom: 18px; }
    .icon { width: 64px; }
    .section-title { font-size: 1.5rem; }
    .card { padding: 16px 14px; font-size: 1rem; border-radius: 30px; }
}