body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8fafc;
    color: #222;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, #0a3d91 0%, #1976d2 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo h1 {
    color: #fff;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.hero {
    background: linear-gradient(135deg, #0a3d91 0%, #1976d2 100%);
    color: #fff;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 1rem;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #0a3d91;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: none;
}

.cta:hover {
    background: linear-gradient(45deg, #fff, #f8f9fa);
    color: #0a3d91;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 1rem;
}

section {
    margin-bottom: 3rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.8);
}

.about-preview, .contact {
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(10,61,145,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    color: #0a3d91;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.mission-statement {
    background: linear-gradient(135deg, #0a3d91 0%, #1976d2 100%);
    color: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
}

.mission-statement h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-statement p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
}

/* About Page Styles */
.lead {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
    align-items: start;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #0a3d91 0%, #1976d2 100%);
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(10,61,145,0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.values-section {
    margin: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(10,61,145,0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h3 {
    color: #0a3d91;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

.approach-section {
    margin: 4rem 0;
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(10,61,145,0.1);
}

.step-number {
    background: linear-gradient(135deg, #0a3d91 0%, #1976d2 100%);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #0a3d91;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.team-section {
    margin: 4rem 0;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(10,61,145,0.1);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-content h3 {
    color: #0a3d91;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-section {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #0a3d91 0%, #1976d2 100%);
    color: #fff;
    border-radius: 15px;
    text-align: center;
}

.contact-section h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.contact-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    margin: 0;
    opacity: 0.9;
}

.contact-details a {
    color: #ffd700;
    text-decoration: none;
}

.contact-details a:hover {
    color: #fff;
}

h1, h2 {
    color: #0a3d91;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

footer {
    background: linear-gradient(135deg, #0a3d91 0%, #1976d2 100%);
    color: #fff;
    padding: 3rem 0;
    font-size: 0.95rem;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 4rem;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-links {
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    transition: color 0.2s;
    font-size: 0.9rem;
    white-space: nowrap;
}

.footer-links a:hover {
    color: #ffd700;
}

.disclaimer {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
}

.disclaimer p {
    margin: 0;
    font-size: 0.9rem;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
}

a {
    color: #1976d2;
    text-decoration: underline;
}

a:hover {
    color: #0a3d91;
}

@media (max-width: 768px) {
    .logo {
        flex-direction: column;
        gap: 0.5rem;
    }
    .logo h1 {
        font-size: 1.5rem;
    }
    .logo-img {
        height: 40px;
    }
    .hero {
        min-height: 400px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
    main {
        padding: 0 0.5rem;
    }
    section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    .feature {
        padding: 1.5rem 1rem;
    }
    .feature-icon {
        font-size: 2.5rem;
    }
    .feature h3 {
        font-size: 1.2rem;
    }
    .mission-statement {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    .mission-statement h3 {
        font-size: 1.3rem;
    }
    .mission-statement p {
        font-size: 1rem;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .approach-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .contact-section {
        padding: 2rem 1.5rem;
    }
    .footer-links {
        gap: 0.25rem;
    }
    .footer-links a {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.3rem;
    }
    .logo-img {
        height: 35px;
    }
    .hero {
        min-height: 350px;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .hero-content {
        padding: 2rem 1rem;
    }
    section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-links a {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }
    .disclaimer {
        padding: 0.75rem;
    }
    .disclaimer p {
        font-size: 0.8rem;
    }
    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.4rem;
    }
    .cta {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }
} 