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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .hero-section {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0f4c75 0%, #1b6ca8 50%, #2a8fc7 100%);
            overflow: hidden;
    margin-bottom: 100px;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            /*opacity: 0.5;*/
            z-index: 1;
        }
        

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /*background: linear-gradient(to bottom, rgba(15, 76, 117, 0.7), rgba(27, 108, 168, 0.85));*/
            z-index: 2;
        }

        .hero-content {
            position: relative;
            top: 314px;
            z-index: 3;
            text-align: center;
            padding: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            color: white;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            opacity: 0.9;
            font-weight: 500;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
        }

        .hero-description {
            font-size: 1.35rem;
            max-width: 800px;
            margin: 0 auto 3rem;
            line-height: 1.8;
            opacity: 0.95;
            font-weight: 300;
        }

        .hero-cta-container {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            padding: 1.2rem 3rem;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-primary {
            background: #ff6b35;
            color: white;
            border: 2px solid white;
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }

        .cta-primary:hover {
            background: #ff5722;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
        }

        .cta-secondary {
            background: transparent;
            color: white;
            background: #376ca2;
            border: 2px solid white;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
        }

        .cta-secondary:hover {
            background: white;
            color: #0f4c75;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
        }

        .hero-features {
            display: flex;
            gap: 3rem;
            justify-content: center;
            margin-top: 4rem;
            flex-wrap: wrap;
    background: #003461;
    padding: 20px;
    opacity: .8;
        }

        .feature-item {
            text-align: center;
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 0.5rem;
        }

        .feature-text {
            font-size: 1.1rem;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-description {
                font-size: 1.1rem;
            }

            .hero-cta-container {
                flex-direction: column;
                align-items: center;
            }

            .cta-button {
                width: 100%;
                max-width: 300px;
            }

            .hero-features {
                gap: 2rem;
            }
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            animation: bounce 2s infinite;
        }

        .scroll-arrow {
            width: 30px;
            height: 30px;
            border-left: 3px solid white;
            border-bottom: 3px solid white;
            transform: rotate(-45deg);
            opacity: 0.7;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }