* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    background: linear-gradient(90deg, #65253e 0%, #5a2038 25%, #4f1b32 50%, #44162c 75%, #391126 100%);
    position: relative;
}

    body::before {
        content: '';
        position: fixed;
        top: -50%;
        right: -10%;
        width: 70%;
        height: 150%;
        background: radial-gradient(circle, rgba(255, 255, 220, 0.5) 0%, rgba(255, 255, 200, 0.3) 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
        pointer-events: none;
        z-index: 0;
    }

.container {
    display: grid;
    grid-template-columns: 1fr 400px;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    word-break: break-word;
}

/* LEFT SIDE - Main Content */
.left-content {
    display: flex;
    flex-direction: column;
    position: relative;
    border-right: 4px solid white;
}

    /* White Vertical Dividers between sections - Full Height */
    .left-content section {
        position: relative;
        
    }

/* Header Section */
.header-section {
    background: linear-gradient(to right, #0a1e3d 0%, #152d52 25%, #1f3c66 50%, #2a4b7a 75%, #355a8f 100%);
    padding: 120px 40px 50px 60px;
    color: white;
    position: relative;
}

.nav-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #0a1e3d 0%, #152d52 25%, #1f3c66 50%, #2a4b7a 75%, #355a8f 100%);
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 50px;
}

.logo-circle {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1px;
}

    .logo-circle img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

    .nav-links a {
        color: white;
        text-decoration: none;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-weight: 400;
        transition: opacity 0.3s;
    }

        .nav-links a:hover {
            opacity: 0.8;
        }

.header-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.header-content p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Content Section */
.content-section {
    background: rgba(255, 255, 255, 0.7);
    padding: 40px 30px;
    color: #333;
}

    .content-section h2 { color: var(--text-main);
        font-size: 32px;
        margin-bottom: 30px;
        color: #2c4766;
    }

    .content-section h3 {
        font-size: 24px;
        margin-top: 40px;
        margin-bottom: 20px;
        color: #2c4766;
    }

    .content-section p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 20px;
        color: #555;
    }

    .content-section ul {
        margin: 20px 0;
        padding-left: 30px;
    }

    .content-section li {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 10px;
        color: #555;
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.stat-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e0e0e0;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #2c4766;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

@media (max-width: 1200px) {
    .container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: relative;
        height: auto;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body::before {
        width:10%;
    }
    .page-header, .content-section {
        padding: 40px 30px;
    }

    .nav-links {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr !important;
    }
}

