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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.7;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    background: linear-gradient(135deg, #1a3a5c 0%, #0d6efd 100%);
    color: white;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
}

.logo {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
}

.logo span {
    color: #ffd700;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

nav ul li a {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
}

nav ul li a:hover {
    color: #ffd700;
    border-bottom-color: #ffd700;
}

.hero {
    background: linear-gradient(135deg, #0a2540 0%, #1a5276 60%, #2e86c1 100%);
    color: white;
    padding: 90px 24px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 36px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background: #ffd700;
    color: #1a3a5c;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255,215,0,0.4);
}

.btn:hover {
    background: #ffec6e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,215,0,0.5);
}

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

section {
    padding: 70px 0;
}

section:nth-child(even) {
    background: #f8f9fa;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a3a5c;
    margin-bottom: 16px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #0d6efd;
    margin-top: 10px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.two-col.reverse {
    direction: rtl;
}

.two-col.reverse > * {
    direction: ltr;
}

.two-col img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.content-text p {
    margin-bottom: 16px;
    color: #555;
    font-size: 1rem;
}

.content-text h3 {
    font-size: 1.5rem;
    color: #1a3a5c;
    margin-bottom: 16px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #0d6efd;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: #1a3a5c;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

.img-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.img-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 220px;
    object-fit: cover;
}

.stats-section {
    background: linear-gradient(135deg, #1a3a5c 0%, #0d6efd 100%);
    color: white;
    padding: 70px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffd700;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 8px;
}

.tips-list {
    list-style: none;
    margin-top: 20px;
}

.tips-list li {
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #555;
}

.tips-list li::before {
    content: '✓';
    color: #0d6efd;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #555;
}

.contact-info strong {
    color: #1a3a5c;
}

footer {
    background: #0a1628;
    color: rgba(255,255,255,0.7);
    padding: 50px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    font-size: 1.4rem;
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links ul li a:hover {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
}

.page-hero {
    background: linear-gradient(135deg, #1a3a5c 0%, #0d6efd 100%);
    color: white;
    padding: 60px 24px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.85;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
}

.page-content h2 {
    font-size: 1.6rem;
    color: #1a3a5c;
    margin: 36px 0 16px;
    font-weight: 700;
}

.page-content h3 {
    font-size: 1.2rem;
    color: #1a3a5c;
    margin: 24px 0 12px;
    font-weight: 600;
}

.page-content p {
    color: #555;
    margin-bottom: 16px;
    font-size: 1rem;
}

.page-content ul {
    margin: 16px 0 16px 24px;
    color: #555;
}

.page-content ul li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .two-col {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2rem;
    }
    nav ul {
        gap: 16px;
    }
}
