.hnk-header {
            background: #fff;
            padding: 2rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #f0f0f0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }

        .hnk-logo {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: #000;
        }

        .hnk-nav {
            display: flex;
            gap: 3rem;
            align-items: center;
        }

        .hnk-nav a {
            text-decoration: none;
            color: #000;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .hnk-nav a:hover {
            color: #d4af37;
        }

        .hnk-cta-btn {
            background: #d4af37;
            color: #fff;
            padding: 0.85rem 2rem;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .hnk-cta-btn:hover {
            background: #ffffffff;
            color: #000;
        }

        .hnk-hero {
            background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
            padding: 6rem 5%;
            text-align: center;
            min-height: 70vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
            
        }

        .hnk-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .hnk-hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
        }

        .hnk-tagline {
            font-size: 0.9rem;
            letter-spacing: 1.5px;
            color: #666;
            margin-bottom: 1rem;
            text-transform: uppercase;
            font-weight: 600;
        }

        .hnk-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: #000;
        }

        .hnk-subtitle {
            font-size: 1.3rem;
            color: #555;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hnk-hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hnk-btn-primary {
            background: #d4af37;
            color: #fff;
            padding: 1rem 2.5rem;
            border: 2px solid #ffffffff;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }

        .hnk-btn-primary:hover {
            background: #ffffffff;
            border-color: #d4af37;
            color: #000;
        }

        .hnk-btn-secondary {
            background: transparent;
            color: #000;
            padding: 1rem 2.5rem;
            border: 2px solid #d4af37;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }

        .hnk-btn-secondary:hover {
            background: #d4af37;
            color: #fff;
        }

        .hnk-services {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../images/banner/banner6.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 5rem 5%;
        }

        .hnk-section-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .hnk-section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #f7f7f7;
        }

        .hnk-section-desc {
            font-size: 1.1rem;
            color: #ffffff;
            max-width: 600px;
            margin: 0 auto;
        }

        .hnk-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }

        .hnk-service-card {
            padding: 2.5rem;
            background: #fafafa;
            border: 1px solid #f0f0f0;
            transition: all 0.3s ease;
            text-align: center;
        }

        .hnk-service-card:hover {
            background: #fff;
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
            transform: translateY(-4px);
        }

        .hnk-service-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .hnk-service-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
            color: #000;
        }

        .hnk-service-text {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.6;
        }

        .hnk-developers {
            background: #fff;
            padding: 5rem 5%;
            border-top: 1px solid #f0f0f0;
        }

        .hnk-developers-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            align-items: center;
            justify-items: center;
        }

        .hnk-dev-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: #000;
            /* padding: 2rem; */
            border: 2px solid #f0f0f0;
            transition: all 0.3s ease;
            width: 100%;
            text-align: center;
            height: 100px;
            display: flex;
            justify-content: center;
            align-items: center;
            place-items: center;
        }

        .hnk-dev-name:hover {
            border-color: #d4af37;
            background: #fafafa;
        }

        .hnk-locations {
            background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
            padding: 5rem 5%;
            border-top: 1px solid #f0f0f0;
        }

        .hnk-locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .hnk-location-card {
            /* padding: 2rem; */
            background: #fff;
            border: 1px solid #f0f0f0;
            text-align: center;
            transition: all 0.3s ease;
            width: 100%;
        }

        .hnk-location-card:hover {
            border-color: #d4af37;
            box-shadow: 0 4px 16px rgba(212, 175, 55, 0.1);
        }

        .hnk-location-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        .hnk-location-icon img {
            width: 100%;
            height: 150px;
        }

        .hnk-location-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: #000;
        }

        .hnk-cta-section {
            background: #122140;
            color: #fff;
            padding: 4rem 5%;
            text-align: center;
        }

        .hnk-cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: white;
        }

        .hnk-cta-text {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hnk-cta-btn-gold {
            background: #d4af37;
            color: #000;
            padding: 1rem 2.5rem;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }

        .hnk-cta-btn-gold:hover {
            background: #fff;
        }

        .hnk-footer {
            background: #fff;
            padding: 3rem 5%;
            border-top: 1px solid #f0f0f0;
            text-align: center;
            color: #666;
        }

        .hnk-footer-text {
            font-size: 0.95rem;
        }

        @media (max-width: 768px) {
            .hnk-title {
                font-size: 2.2rem;
            }

            .hnk-nav {
                gap: 1.5rem;
            }

            .hnk-nav a {
                font-size: 0.85rem;
            }

            .hnk-hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .hnk-btn-primary, .hnk-btn-secondary {
                width: 100%;
            }
        }