* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fafb;
}

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

/* Header */
header {
    background-color: #ffffff;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-bottom: 1px solid #e5e7eb;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    height: 80px;
    width: auto;
    display: block;
}

.company-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #15803d;
    margin: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #15803d 0%, #22c55e 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #000000;
}

.hero-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Sections */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #15803d;
    text-align: center;
}

.subtitle {
    text-align: center;
    color: #22c55e;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

/* Features Section */
.features {
    background-color: white;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-card {
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-card h3 {
    color: #15803d;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: #555;
}

.highlight-box {
    background-color: #dcfce7;
    border-left: 4px solid #22c55e;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 4px;
}

.highlight-box p {
    font-size: 1.05rem;
    color: #15803d;
}

/* Transformation Section */
.transformation {
    background-color: #f3f4f6;
}

.transformation p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.benefits-list {
    max-width: 700px;
    margin: 2rem auto;
    list-style: none;
    padding: 0;
}

.benefits-list li {
    background-color: white;
    padding: 1rem 1.5rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    border-left: 4px solid #22c55e;
    font-size: 1.05rem;
}

.transformation-text {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

/* Why Us Section */
.why-us {
    background-color: white;
}

.why-content {
    max-width: 900px;
    margin: 0 auto;
}

.team-intro {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #555;
}

.why-content h3 {
    color: #15803d;
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.benefit-item {
    background-color: #f0fdf4;
    padding: 1rem;
    border-radius: 4px;
    font-size: 1.05rem;
    color: #15803d;
    font-weight: 500;
}

.leadership {
    max-width: 1100px;
    margin: 3rem auto;
    text-align: center;
}

.leadership h3 {
    color: #15803d;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.director-card {
    background-color: #f0fdf4;
    border: 2px solid #22c55e;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.director-card h4 {
    color: #15803d;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.director-title {
    color: #22c55e;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.director-credentials {
    color: #555;
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.director-role {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.director-contact {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(59, 130, 246, 0.3);
}

.contact-item {
    color: #1e3a8a;
    font-size: 0.9rem;
    margin: 0.4rem 0;
    line-height: 1.4;
    word-break: break-all;
}

.mission-statement {
    text-align: center;
    font-size: 1.15rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #dcfce7;
    border-radius: 8px;
}

/* Promise Section */
.promise {
    background: linear-gradient(135deg, #15803d 0%, #22c55e 100%);
    color: white;
    text-align: center;
}

.promise h2 {
    color: white;
}

.promise-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.vision {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.vision h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.vision p {
    font-size: 1.2rem;
    line-height: 2;
    font-weight: 500;
}

/* Footer */
footer {
    background-color: #15803d;
    color: white;
    padding: 2rem 0 1rem 0;
    text-align: center;
}

.footer-content {
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto 1.5rem auto;
}

.footer-address h4,
.footer-social h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.footer-address p {
    margin: 0.3rem 0;
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.05rem;
    padding: 0.75rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 250px;
    justify-content: center;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-icon {
    width: 24px;
    height: 24px;
}

.footer-copyright {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 1rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-text {
        font-size: 1rem;
        padding: 0 1rem;
    }

    section h2 {
        font-size: 1.7rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .section-intro {
        font-size: 1rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-list {
        padding: 0 1rem;
    }

    .leadership {
        margin: 2rem auto;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .director-card {
        padding: 1.5rem;
    }

    .director-card h4 {
        font-size: 1.2rem;
    }

    .director-credentials {
        font-size: 0.9rem;
    }

    .director-role {
        font-size: 0.95rem;
    }

    .contact-item {
        font-size: 0.85rem;
    }

    .vision p {
        font-size: 1.1rem;
    }

    .promise-text {
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-address h4,
    .footer-social h4 {
        font-size: 1.1rem;
    }

    .footer-address p {
        font-size: 0.95rem;
    }

    .social-link {
        font-size: 1rem;
        padding: 0.65rem 1.25rem;
    }

    .social-icon {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 2rem 0;
    }

    .hero {
        padding: 2.5rem 0;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero-text {
        font-size: 0.95rem;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .header-content {
        gap: 0.75rem;
    }

    .logo {
        height: 50px;
    }

    .company-name {
        font-size: 1.1rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .highlight-box {
        padding: 1rem;
    }

    .mission-statement {
        font-size: 1rem;
        padding: 1rem;
    }

    .leadership-grid {
        gap: 1rem;
    }

    .director-card {
        padding: 1.25rem;
    }

    .director-card h4 {
        font-size: 1.15rem;
    }

    .director-title {
        font-size: 0.95rem;
    }

    .director-credentials {
        font-size: 0.85rem;
    }

    .director-role {
        font-size: 0.9rem;
    }

    .contact-item {
        font-size: 0.8rem;
    }

    .vision {
        padding: 1.5rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-address h4,
    .footer-social h4 {
        font-size: 1rem;
    }

    .footer-address p {
        font-size: 0.9rem;
    }

    .social-link {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
        max-width: 220px;
    }

    .social-icon {
        width: 20px;
        height: 20px;
    }
}
