
        /* Hero Section */
        .hero-section {
            position: relative;
            height: 70vh;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(18, 18, 18, 0.85), rgba(46, 46, 46, 0.75)),
                        url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?q=80&w=2070') center/cover;
            animation: zoomEffect 20s ease-in-out infinite alternate;
        }

        @keyframes zoomEffect {
            0% { transform: scale(1); }
            100% { transform: scale(1.1); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            padding: 0 20px;
            max-width: 900px;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            letter-spacing: -1px;
        }

        .hero-content .highlight {
            color: var(--golden-yellow);
        }

        .hero-content p {
            font-size: clamp(1rem, 2vw, 1.3rem);
            margin-bottom: 30px;
            opacity: 0.95;
            line-height: 1.8;
        }

        .hero-decorative {
            width: 80px;
            height: 4px;
            background: var(--golden-yellow);
            margin: 30px auto 0;
            border-radius: 2px;
        }
