/* css/style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: #fefefe;
    color: #1a2a2f;
    line-height: 1.5;
    padding: 2rem 1.5rem;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

/* header / logo */
.logo-area {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-img {
    max-width: 280px;
    width: 100%;
    height: auto;
}

.tagline {
    text-align: center;
    font-size: 1rem;
    letter-spacing: 1px;
    color: #3a6b4b;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 0.5rem;
}

.est {
    text-align: center;
    font-size: 0.85rem;
    color: #5a6e6b;
    margin-top: 0.3rem;
}

/* navigation */
.main-nav {
    text-align: center;
    margin: 1.5rem 0 2rem;
    border-top: 1px solid #e2e6df;
    border-bottom: 1px solid #e2e6df;
    padding: 0.8rem 0;
}

.main-nav a {
    color: #3a6b4b;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 500;
}

.main-nav a:hover {
    text-decoration: underline;
}

/* sections */
section {
    margin: 3rem 0;
}

h2 {
    font-size: 1.6rem;
    font-weight: 500;
    border-left: 4px solid #3a6b4b;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
    color: #1e3a2f;
}

.legal-content {
    line-height: 1.6;
}
.legal-content h2,
.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.legal-content p,
.legal-content ul,
.legal-content address {
    margin-bottom: 1rem;
}
.legal-content address {
    font-style: normal;
    background: #f9f9f5;
    padding: 1rem;
    border-radius: 12px;
}

.mission-text {
    font-size: 1.1rem;
    background: #f4f7f2;
    padding: 1.8rem;
    border-radius: 24px;
    margin: 1rem 0;
}

.pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pillar {
    flex: 1 1 200px;
    background: white;
    border-radius: 20px;
    padding: 1.2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    border: 1px solid #e2e8e2;
}

.pillar h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2b5e3b;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.project-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 1.2rem 1.5rem;
    border: 1px solid #e6ede3;
    transition: all 0.2s ease;
}

.project-card .logo {
    display: block;
    width: 150px;
    height: auto;
    margin: 1rem auto;
}

.project-card:hover {
    border-color: #bdd8b0;
    background: #fefef9;
}

.project-card h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.project-card p {
    font-size: 0.9rem;
    color: #3e554b;
    margin: 0.6rem 0;
}

.project-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: #3a6b4b;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
}

.project-link:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.social-links a {
    color: #3a6b4b;
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px dotted #bdd8b0;
}

.social-links a:hover {
    border-bottom: 1px solid #3a6b4b;
}

.fin-note {
    font-size: 0.85rem;
    background: #f9f9f5;
    padding: 1rem 1.5rem;
    border-radius: 40px;
    text-align: center;
    margin: 2rem 0;
}

/* Follow Us section links */
#follow .follow-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
    font-size: 1rem;
}
#follow .follow-links a {
    color: #3a6b4b;
    text-decoration: none;
    border-bottom: 1px dotted #bdd8b0;
}
#follow .follow-links a:hover {
    border-bottom-color: #3a6b4b;
}

footer {
    text-align: center;
    font-size: 0.8rem;
    color: #6b7b76;
    border-top: 1px solid #e2e6df;
    padding-top: 2rem;
    margin-top: 3rem;
}

hr {
    margin: 1rem 0;
    border: 0;
    height: 1px;
    background: #e2e6df;
}

@media (max-width: 640px) {
    body {
        padding: 1rem;
    }
    .mission-text {
        padding: 1.2rem;
    }
    .main-nav a {
        margin: 0 0.6rem;
        font-size: 0.9rem;
    }
}
