
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
            background-color: #f5f5f5;
        }

        .header {
            background: linear-gradient(135deg, #0d4b7a 0%, #1a5f8f 100%);
            color: white;
            padding: 20px 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .header h1 {
            font-size: 24px;
            font-weight: 600;
            letter-spacing: 2px;
        }

        .header-actions {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 3px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .nav-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: white;
            box-shadow: -2px 0 10px rgba(0,0,0,0.1);
            transition: right 0.3s ease;
            z-index: 1000;
            padding-top: 80px;
        }

        .nav-menu.active {
            right: 0;
        }

        .nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0,0,0,0.5);
            z-index: 999;
        }

        .nav-overlay.active {
            display: block;
        }

        .nav-links {
            display: flex;
            flex-direction: column;
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .nav-links li {
            border-bottom: 1px solid #f0f0f0;
        }

        .nav-links a {
            display: flex;
            align-items: center;
            padding: 20px 30px;
            color: #333;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .nav-links a:hover {
            background: #f8f9fa;
            color: #0d4b7a;
            padding-left: 40px;
        }

        .nav-links a::before {
            margin-right: 15px;
            font-size: 20px;
        }

        .nav-home::before { content: '🏠'; }
        .nav-contact::before { content: '📞'; }
        .nav-about::before { content: 'ℹ️'; }

        @media (min-width: 769px) {
            .hamburger {
                display: flex !important;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .header {
                padding: 15px 20px;
            }

            .header h1 {
                font-size: 18px;
            }

            .header-actions {
                flex-wrap: wrap;
                gap: 10px;
            }

            .header-btn {
                font-size: 13px;
                padding: 8px 16px;
            }
        }

        .header-btn {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 10px 24px;
            border: 2px solid white;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .header-btn:hover {
            background: white;
            color: #0d4b7a;
        }

        .header-btn.primary {
            background: white;
            color: #0d4b7a;
            border-color: white;
        }

        .header-btn.primary:hover {
            background: rgba(255, 255, 255, 0.9);
        }

        .hero-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 80px 40px;
            max-width: 1400px;
            margin: 0 auto;
            gap: 60px;
        }

        .hero-content {
            flex: 1;
            max-width: 600px;
        }

        .hero-content h2 {
            font-size: 48px;
            color: #0d3b66;
            line-height: 1.3;
            margin-bottom: 24px;
            font-weight: 700;
        }

        .hero-content .quote {
            font-size: 18px;
            color: #0d3b66;
            font-style: italic;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .get-started-btn {
            background-color: #0d1b66;
            color: white;
            padding: 18px 48px;
            font-size: 18px;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(13, 27, 102, 0.3);
        }

        .get-started-btn:hover {
            background-color: #0a1450;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(13, 27, 102, 0.4);
        }

        .get-started-btn:active {
            transform: translateY(0);
        }

        .hero-image {
            flex: 0 0 auto;
        }

        .hero-image img {
            width: 400px;
            height: 400px;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }

        .features-section {
            background: white;
            padding: 80px 40px;
            text-align: center;
        }

        .features-section h3 {
            font-size: 36px;
            color: #0d3b66;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .features-section p {
            font-size: 18px;
            color: #666;
            margin-bottom: 50px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            padding: 30px;
            background: #f8f9fa;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .feature-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .feature-card h4 {
            font-size: 22px;
            color: #0d3b66;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .feature-card p {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
            margin: 0;
        }

        .footer {
            background: #0d3b66;
            color: white;
            padding: 40px;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            font-size: 14px;
            transition: opacity 0.3s ease;
        }

        .footer-links a:hover {
            opacity: 0.8;
        }

        .footer p {
            font-size: 14px;
            opacity: 0.8;
        }

        @media (max-width: 968px) {
            .hero-section {
                flex-direction: column;
                text-align: center;
                padding: 60px 20px;
            }

            .hero-content h2 {
                font-size: 36px;
            }

            .hero-image img {
                width: 300px;
                height: 300px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 20px;
                flex-direction: column;
                gap: 15px;
            }

            .header h1 {
                font-size: 20px;
            }

            .header-actions {
                width: 100%;
                justify-content: center;
            }

            .hero-content h2 {
                font-size: 28px;
            }

            .hero-content .quote {
                font-size: 16px;
            }

            .features-section {
                padding: 60px 20px;
            }

            .features-section h3 {
                font-size: 28px;
            }
        }
