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

:root {
    --primary-dark: #2a3a6e;
    --accent-red: #e84c3d;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --border-light: #e0e0e0;
    --accent-pink: #f5a5a5;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header & Navigation */
header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-top {
    background: var(--primary-dark);
    color: white;
    padding: 10px 40px;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-left {
    display: flex;
    gap: 25px;
}

.header-top-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 0.7;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #999;
    text-decoration: none;
    letter-spacing: 2px;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    text-decoration: none;
    color: var(--accent-red);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.5) 100%), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 40px;
    min-height: 550px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 15px;
    margin-bottom: 35px;
    line-height: 1.6;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: var(--accent-red);
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.about-left .cta-button {
    width: 100%;
    padding: 14px 28px;
    margin-top: 30px;
}

.cta-button:hover {
    background: #d63d2f;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(232, 76, 61, 0.3);
}

/* About Section */
.about {
    padding: 70px 40px;
    background: white;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.about-left {
    max-width: 500px;
}

.section-label {
    color: var(--accent-red);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.about-left h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.4;
    font-weight: 700;
}

.about-left > p:not(.section-label) {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.8;
    font-size: 14px;
}

.icon-box {
    display: flex;
    gap: 18px;
    margin-top: 40px;
    margin-bottom: 35px;
}

.icon-circle {
    width: 55px;
    height: 55px;
    background: var(--accent-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 28px;
    color: var(--accent-red);
}

.icon-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 700;
}

.icon-content p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 0;
}

.about-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: auto;
    max-height: 550px;
}

.about-image {
    background: var(--bg-light);
    border-radius: 2px;
    overflow: hidden;
}

.about-image:first-child {
    grid-column: 1;
    grid-row: 1 / 3;
}

.about-image:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.about-image:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Services Section */
.services {
    padding: 70px 40px;
    background: white;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .section-label {
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title p {
    color: var(--text-light);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: 5px;
    background: #e0e0e0;
    border-radius: 2px;
    margin-top: 30px;
    overflow: hidden;
    display: flex;
    gap: 5px;
}

.progress-fill {
    width: 20%;
    height: 100%;
    background: var(--text-dark);
    border-radius: 2px;
}

.progress-fill:nth-child(2) {
    width: 35%;
    background: var(--text-dark);
}

.progress-fill:nth-child(3) {
    width: 15%;
    background: #e0e0e0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 70px;
}

.service-card {
    padding-right: 40px;
}

.service-card .section-label {
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 14px;
}

/* Features Section */
.features {
    padding: 70px 40px;
    background: white;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.feature-item {
    background: white;
    padding: 35px 25px;
    border-radius: 2px;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.feature-icon {
    font-size: 42px;
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
}

.feature-item h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.feature-item p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.7;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, rgba(26, 42, 94, 0.85) 0%, rgba(15, 26, 60, 0.85) 100%), url('images/stats-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><line x1="0" y1="0" x2="100" y2="100" stroke="rgba(255,255,255,0.02)" stroke-width="1"/></svg>');
    pointer-events: none;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
    min-width: 100px;
}

.stat-label {
    font-size: 12px;
    opacity: 0.9;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 40px 20px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo {
    font-size: 48px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 250px;
}

.footer-section p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-social-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-social-icons a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-social-icons a:hover {
    color: var(--accent-red);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 10px;
        padding: 12px 20px;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    nav {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero {
        padding: 50px 20px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 36px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .about {
        padding: 40px 20px;
    }

    .services {
        padding: 40px 20px;
    }

    .features {
        padding: 40px 20px;
    }
}