/* --- RESET & GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif; /* Clean modern font */
    background-color: #fafafa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- TOP BAR --- */
.top-bar {
    background-color: #f3f4f6;
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    color: #666;
}

/* --- PAGE HEADER --- */
.page-header {
    text-align: center;
    padding: 60px 0 40px;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 600;
}

.subtitle {
    color: #666;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
}

/* --- WHO WE ARE SECTION --- */
.who-we-are {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 40px 20px;
}

.who-text {
    flex: 1;
}

.who-text h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #111;
}

.who-text p {
    font-size: 14px;
    color: #666;
    text-align: justify;
}

.who-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-bg {
    background-color: #fdf6e9; /* Light beige background */
    width: 100%;
    max-width: 450px;
    height: 350px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-bg img {
    width: 90%;
    height: auto;
    object-fit: contain;
}

/* --- VALUES SECTION --- */
.values-section {
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

.section-title p {
    color: #888;
    font-size: 14px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.value-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: #e0f2fe; /* Light blue circle */
    color: #3B82F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 20px;
}

.value-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.value-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

/* --- MISSION SECTION --- */
.mission-section {
    text-align: center;
    padding: 60px 20px 100px;
    max-width: 800px; /* Limit width for readability */
}

.mission-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.mission-section p {
    font-size: 15px;
    color: #666;
}

/* --- FOOTER --- */
footer {
    background-color: #fff;
    border-top: 1px solid #eee;
    padding-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h4 {
    font-size: 14px;
    margin-bottom: 20px;
    color: #333;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 13px;
    color: #666;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #3B82F6;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #333;
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #f5f5f5;
    font-size: 11px;
    color: #999;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    .who-we-are {
        flex-direction: column-reverse; /* Puts image on top on mobile */
        text-align: center;
    }
    
    .search-bar, .nav-links {
        display: none; /* Simplification for mobile view */
    }

    .who-text p {
        text-align: center;
    }
}