* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #ffffff;
            color: #1e2a3e;
            line-height: 1.5;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* Header */
        .page-header {
            background: linear-gradient(135deg, #0a2b3e 0%, #1e4a6b 100%);
            color: white;
            padding: 80px 0 60px;
            text-align: center;
        }

        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 16px;
        }

        .page-header p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Back Link */
        .back-link {
            display: inline-block;
            margin: 32px 0 24px;
            color: #c47b2e;
            text-decoration: none;
            font-weight: 500;
        }

        .back-link:hover {
            text-decoration: underline;
        }

        /* Intro Section */
        .intro-section {
            padding: 40px 0 20px;
            text-align: center;
        }

        .intro-section h2 {
            font-size: 2rem;
            color: #0a2b3e;
            margin-bottom: 20px;
        }

        .intro-section p {
            font-size: 1.1rem;
            color: #4a5b6b;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 32px;
            margin: 48px 0;
        }

        .service-card {
            background: white;
            border-radius: 28px;
            padding: 32px;
            transition: all 0.25s ease;
            border: 1px solid #eef2f8;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
            border-color: #c47b2e30;
        }

        .service-icon {
            font-size: 2.8rem;
            color: #c47b2e;
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: #0a2b3e;
        }

        .service-card p {
            color: #4a5b6b;
            margin-bottom: 20px;
        }

        .service-list {
            list-style: none;
            margin-top: 16px;
        }

        .service-list li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            color: #2c3e4e;
        }

        .service-list i {
            color: #c47b2e;
            font-size: 0.9rem;
            width: 20px;
        }

        /* Stats Section */
        .stats-section {
            background: #0a2b3e;
            padding: 60px 0;
            margin: 60px 0;
            color: white;
        }

        .stats-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 32px;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 2.5rem;
            color: #c47b2e;
            margin-bottom: 8px;
        }

        .stat-item p {
            opacity: 0.8;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 60px 0;
            background: #f8fafc;
            border-radius: 40px;
            margin: 40px 0 60px;
        }

        .cta-section h2 {
            font-size: 2rem;
            margin-bottom: 16px;
        }

        .cta-section p {
            color: #4a5b6b;
            margin-bottom: 32px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: #c47b2e;
            color: white;
            padding: 14px 32px;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.25s ease;
        }

        .btn:hover {
            background-color: #a5631f;
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background: #0a2b3e;
            color: #cddfea;
            padding: 48px 0 24px;
            margin-top: 40px;
        }

        .footer-content {
            text-align: center;
        }

        .footer-content a {
            color: #c47b2e;
            text-decoration: none;
        }

        .copyright {
            text-align: center;
            padding-top: 32px;
            margin-top: 32px;
            border-top: 1px solid #255f7a;
            font-size: 0.85rem;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 24px;
            }
            .page-header {
                padding: 60px 0 40px;
            }
            .page-header h1 {
                font-size: 2rem;
            }
            .services-grid {
                grid-template-columns: 1fr;
            }
            .stats-grid {
                flex-direction: column;
                align-items: center;
            }
        }