* {
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #f5f7fb;
    color: #1F2933;
    margin: 0;
}

/* Colors */
:root {
    --primary: #165e9c;
    --primary-dark: #0f4572;
    --accent: #1cc5b8;
    --text-dark: #102a43;
    --text-muted: #6b7b93;
}

/* Top bar */
.top-bar {
    background: #0b1120;
    color: #e5e7eb;
    font-size: 13px;
}

/* Navbar */
.main-navbar {
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.navbar .nav-link {
    color: #111827;
    font-weight: 500;
    margin-inline: 6px;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: var(--primary);
}

.logo {
    height: 42px;
    width: 42px;
    object-fit: contain;
}

.brand-text {
    font-weight: 700;
    color: #0f172a;
    font-size: 18px;
    line-height: 1.1;
}

.brand-subtext {
    font-size: 11px;
    font-weight: 500;
    color: #6b7280;
}

/* CTA button */
.btn-cta {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-cta:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 80vh;
    background: radial-gradient(circle at top right, #e0f2fe, #eef2ff 40%, #f9fafb 70%);
    overflow: hidden;
}

.hero-section .overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at bottom left, rgba(20, 184, 166, 0.18), transparent 50%);
    pointer-events: none;
}

.hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #0f172a;
}

.hero-subtitle {
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 15px;
    max-width: 520px;
}

.hero-actions .btn {
    margin-top: 18px;
}

.hero-badges span {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    color: #0f172a;
    background: rgba(255,255,255,0.85);
    border-radius: 999px;
    padding: 6px 12px;
    margin-inline-end: 6px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.hero-badges i {
    margin-right: 6px;
    color: var(--accent);
}

.hero-image {
    max-width: 90%;
    border-radius: 32px;
    box-shadow: 0 25px 60px rgba(15,23,42,0.25);
}

/* Sections */
.section {
    position: relative;
}

.section-title {
    font-weight: 700;
    color: #0f172a;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 620px;
    margin: 8px auto 0;
    text-align: center;
}

/* Cards */
.info-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 14px 40px rgba(15,23,42,0.06);
}

.info-card h5 {
    margin-bottom: 8px;
    color: #0f172a;
}

.experience-list li {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.experience-list i {
    color: var(--accent);
    margin-right: 6px;
}

.image-card img {
    box-shadow: 0 20px 50px rgba(15,23,42,0.25);
}

/* Partners */
.partners-grid .partner-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 12px 32px rgba(15,23,42,0.06);
    height: 100%;
}

.partner-card h6 {
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.partner-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Charity cards */
.charity-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 10px 30px rgba(15,23,42,0.06);
    text-align: center;
    font-size: 14px;
}

/* CTA section */
.contact-cta-section {
    background: linear-gradient(135deg, #0f172a, #1d4ed8);
    color: #e5e7eb;
    border-radius: 24px;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 24px 16px;
}

.contact-cta-btn {
    background-color: #ffffff;
    color: #111827;
    border: none;
}

/* Page header */
.page-header {
    background: linear-gradient(120deg, #0f172a, #1d4ed8);
    color: #e5e7eb;
    padding: 45px 0;
    margin-bottom: 20px;
}

.page-title {
    font-weight: 700;
}

.page-subtitle {
    font-size: 14px;
    color: #cbd5f5;
}

/* Support & contact */
.support-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.support-list li {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.support-list i {
    color: var(--accent);
    margin-right: 6px;
}

.support-box {
    background: #0f172a;
    color: #e5e7eb;
    padding: 16px;
    border-radius: 18px;
    font-size: 14px;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 14px 40px rgba(15,23,42,0.08);
}

/* About license */
.license-box {
    background: #e5f0ff;
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 13px;
}

/* Team image */
.team-image-wrap {
    display: flex;
    justify-content: center;
}

.team-image {
    max-width: 260px;
    height: 260px;
    object-fit: cover;
    box-shadow: 0 18px 48px rgba(15,23,42,0.3);
}

/* Footer */
.site-footer {
    background: #020617;
    color: #9ca3af;
}

.footer-title {
    color: #e5e7eb;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-text {
    font-size: 13px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
}

.footer-links li {
    margin-bottom: 5px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    font-size: 13px;
}

.footer-contact li {
    margin-bottom: 4px;
}

.footer-contact i {
    margin-right: 6px;
    color: var(--accent);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid #4b5563;
    color: #e5e7eb;
    margin-inline: 3px;
    font-size: 13px;
}

.footer-social a:hover {
    background: #e5e7eb;
    color: #020617;
}

.footer-divider {
    border-color: #1f2937;
}

/* Responsive */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2.1rem;
    }
    .hero-section {
        padding-top: 40px;
        padding-bottom: 30px;
        min-height: auto;
    }
}
