* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.logo {
    width: 80px;
    height: auto;
    flex-shrink: 0;
}

.header-text h1 {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    color: #1e4f91;
    margin-bottom: 5px;
}

.header-text .tagline {
    font-size: 1.1rem;
    color: #1e4f91;
    font-weight: 600;
}

/* Content sections */
.intro {
    margin-bottom: 35px;
}

.intro p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.intro strong {
    color: #1e4f91;
}

/* Who We Help section */
.who-we-help {
    margin-bottom: 35px;
}

.who-we-help h2 {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    color: #1e4f91;
    margin-bottom: 20px;
}

.help-item {
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 3px solid #198754;
}

.help-item h3 {
    font-size: 1.1rem;
    color: #1e4f91;
    margin-bottom: 8px;
}

.help-item p {
    font-size: 1rem;
    color: #555;
}

/* What We Do section */
.what-we-do {
    margin-bottom: 35px;
}

.what-we-do h2 {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    color: #1e4f91;
    margin-bottom: 20px;
}

.features-list {
    margin: 0 0 0 20px;
    list-style-type: none;
}

.features-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    position: relative;
    padding-left: 25px;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #198754;
    font-weight: bold;
}

.features-list li strong {
    color: #1e4f91;
}

/* Why Us section */
.why-us {
    margin-bottom: 40px;
    padding: 25px;
    background-color: #e8f4ea;
    border-radius: 8px;
}

.why-us h2 {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    color: #1e4f91;
    margin-bottom: 15px;
}

.why-us p {
    font-size: 1rem;
    color: #333;
}

/* Buttons container */
.buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.btn {
    background-color: #198754;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.btn:hover {
    background-color: #146c43;
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

/* Contact section */
.contact {
    border-top: 1px solid #ddd;
    padding-top: 30px;
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact p strong {
    color: #1e4f91;
}

.contact a {
    color: #1e4f91;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact a:hover {
    text-decoration: underline;
}

/* Modal/Popup styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    position: relative;
    background: transparent;
    padding: 0;
    max-width: 90%;
    max-height: 90%;
}

.modal-content img {
    display: block;
    max-width: 100%;
    max-height: 85vh;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.close-btn {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 36px;
    height: 36px;
    background-color: #1e4f91;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 10;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.close-btn:hover {
    background-color: #153a6a;
}

/* Responsive styles */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
    }

    .header-text h1 {
        font-size: 1.6rem;
    }

    .header-text .tagline {
        font-size: 1rem;
    }

    .buttons-container {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        min-width: unset;
    }

    .modal-content {
        max-width: 75%;
    }

    .modal-content img {
        max-height: 70vh;
    }

    .help-item {
        padding-left: 12px;
    }

    .why-us {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 15px;
    }

    .header-text h1 {
        font-size: 1.4rem;
    }

    .header-text .tagline {
        font-size: 0.95rem;
    }

    .who-we-help h2,
    .what-we-do h2,
    .why-us h2 {
        font-size: 1.3rem;
    }

    .intro p,
    .features-list li,
    .help-item p,
    .why-us p {
        font-size: 0.95rem;
    }

    .help-item h3 {
        font-size: 1rem;
    }
}