/* Color Variables */
        :root {
            --navy: #0A1A3A;
            --black: #000000;
            --gold: #FFD700;
            --red: #C00C00;
            --light: #F8F9FA;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--light);
            background-color: var(--navy);
            margin: 0;
            padding: 0;
        }
        
        /* Description Section */
        .description-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #0a0e17 0%, #070a12 100%);
            position: relative;
            overflow: hidden;
        }
        
        .description-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="%23FFD700" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="50" cy="10" r="2"/><circle cx="10" cy="50" r="2"/><circle cx="50" cy="50" r="2"/></g></svg>');
            opacity: 0.05;
            z-index: 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }
        
        .section-header h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        
        .section-header h2 span {
            color: var(--gold);
        }
        
        .section-header p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Process Steps */
        .process-steps {
            position: relative;
            padding: 40px 0;
        }
        
        .process-steps::before {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--gold), transparent);
            opacity: 0.3;
        }
        
        .step-card {
            background: linear-gradient(145deg, rgba(18, 24, 38, 0.8) 0%, rgba(10, 14, 26, 0.9) 100%);
            border-radius: 8px;
            padding: 30px;
            margin-bottom: 40px;
            position: relative;
            border: 1px solid rgba(255, 215, 0, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
        }
        
        .step-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 215, 0, 0.3);
        }
        
        .step-number {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: var(--gold);
            color: var(--black);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .step-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--gold);
            font-size: 1.5rem;
        }
        
        .step-card h3 {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .step-card p {
            color: rgba(255, 255, 255, 0.8);
            text-align: center;
            margin-bottom: 0;
        }
        
        /* Approach Section */
        .approach-section {
            padding: 80px 0;
            background-color: #0c0e15;
            position: relative;
        }
        
        .approach-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="%230A1A3A"/><path d="M0 0h50v50H0zM50 50h50v50H50z" fill="%23070b14" fill-opacity="0.3"/></svg>');
            opacity: 0.03;
            z-index: 0;
        }
        
        .approach-card {
            background: linear-gradient(145deg, #121826 0%, #0a0e1a 100%);
            border-radius: 8px;
            padding: 30px;
            height: 100%;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 215, 0, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
        }
        
        .approach-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 215, 0, 0.3);
        }
        
        .approach-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--navy) 0%, var(--black) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 1.8rem;
            color: var(--gold);
            border: 2px solid var(--gold);
        }
        
        .approach-card h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .approach-card p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* Coverage Section */
        .coverage-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #0a0e17 0%, #070a12 100%);
            position: relative;
        }
        
        .coverage-map {
            position: relative;
            height: 400px;
            background: rgba(10, 26, 58, 0.5);
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid rgba(255, 215, 0, 0.1);
        }
        
        .map-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            font-size: 1.2rem;
            text-align: center;
            padding: 20px;
        }
        
        .locations-list {
            list-style: none;
            padding: 0;
            margin: 0;
            columns: 2;
            column-gap: 20px;
        }
        
        .locations-list li {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .locations-list li i {
            color: var(--gold);
            margin-right: 10px;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(10, 26, 58, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%);
            text-align: center;
            position: relative;
        }
        
        .cta-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="%23000000"/><path d="M0 0h50v50H0zM50 50h50v50H50z" fill="%23FFD700" fill-opacity="0.05"/></svg>');
            opacity: 0.1;
            z-index: 0;
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            margin-bottom: 30px;
        }
        
        .btn-gold {
            background-color: var(--gold);
            color: var(--black);
            padding: 12px 30px;
            font-weight: 600;
            border: none;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .btn-gold:hover {
            background-color: #e6c300;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .process-steps::before {
                left: 30px;
            }
            
            .step-card {
                margin-left: 60px;
            }
            
            .step-number {
                left: -60px;
                transform: none;
            }
        }
        
        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2.2rem;
            }
            
            .locations-list {
                columns: 1;
            }
            
            .cta-content h2 {
                font-size: 2rem;
            }
        }