 
        /* About Hero Section */
        .about-hero-section {
            position: relative;
            background: var(--primary-blue);
            padding: 140px 0 100px;
            overflow: hidden;
        }

        .about-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg,
                    rgba(1, 174, 239, 0.05) 0%,
                    transparent 50%);
            pointer-events: none;
        }

        .about-hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 2;
        }

        .about-hero-content {
            max-width: 900px;
            opacity: 0;
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
        }

        .about-hero-title {
            font-size: 42px;
            font-weight: 700;
            color: var(--white);
            line-height: 1.3;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .about-hero-title .highlight-gold {
            color: var(--accent-gold);
            display: inline-block;
            position: relative;
        }

        .about-hero-title .highlight-gold::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            animation: expandWidth 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.1s forwards;
        }

        .about-hero-description {
            font-size: 16px;
            font-weight: 400;
            color: var(--text-lighter);
            line-height: 1.7;
            margin: 0;
            max-width: 700px;
        }

        /* Animations */
        @keyframes expandWidth {
            from {
                width: 0;
            }

            to {
                width: 100%;
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .about-hero-section {
                padding: 120px 0 80px;
            }

            .about-hero-container {
                padding: 0 30px;
            }

            .about-hero-title {
                font-size: 38px;
            }
        }

        @media (max-width: 768px) {
            .about-hero-section {
                padding: 110px 0 70px;
            }

            .about-hero-container {
                padding: 0 20px;
            }

            .about-hero-title {
                font-size: 34px;
                letter-spacing: -0.3px;
            }

            .about-hero-description {
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .about-hero-section {
                padding: 100px 0 60px;
            }

            .about-hero-title {
                font-size: 30px;
            }

            .about-hero-description {
                font-size: 14px;
            }
        }
    
    
    
    
        /* Contact Section */
        .contact-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(1, 174, 239, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(244, 185, 66, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        /* Section Header */
        .section-header {
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 32px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .title-underline {
            width: 60px;
            height: 4px;
            background: var(--accent-gold);
            border-radius: 2px;
        }

        /* Contact Form */
        .contact-form-wrapper {
            background: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .contact-form-wrapper:hover {
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
            transform: translateY(-5px);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            position: relative;
        }

        .form-input {
            width: 100%;
            padding: 16px 20px;
            font-size: 14px;
            font-weight: 400;
            color: #333;
            background: #f8f9fa;
            border: 2px solid transparent;
            border-radius: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-family: 'Inter', sans-serif;
        }

        .form-input:focus {
            outline: none;
            background: white;
            border-color: var(--accent-cyan);
            box-shadow: 0 0 0 4px rgba(1, 174, 239, 0.1);
        }

        .form-input::placeholder {
            color: #999;
        }

        .form-select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 20px center;
            cursor: pointer;
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
            font-family: 'Inter', sans-serif;
        }

        .btn-submit {
            padding: 18px 40px;
            background: var(--primary-blue);
            color: white;
            font-size: 15px;
            font-weight: 600;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(0, 72, 118, 0.3);
            margin-top: 10px;
        }

        .btn-submit:hover {
            background: #003d5c;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 72, 118, 0.4);
        }

        .btn-submit:active {
            transform: translateY(0);
        }

        .btn-submit i {
            font-size: 14px;
        }

        /* Contact Info */
        .contact-info-wrapper {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .info-cards {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .info-card {
            background: white;
            padding: 30px;
            border-radius: 16px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }

        .info-card:hover {
            border-color: var(--accent-cyan);
            transform: translateX(5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--primary-blue) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .info-card:hover .info-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .info-icon i {
            font-size: 20px;
            color: white;
        }

        .info-content {
            flex: 1;
        }

        .info-title {
            font-size: 16px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .info-text {
            font-size: 14px;
            font-weight: 400;
            color: #666;
            line-height: 1.6;
            margin: 0;
        }

        /* Map */
        .map-wrapper {
            background: white;
            padding: 12px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .map-wrapper:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .map-wrapper iframe {
            border-radius: 12px;
            display: block;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .contact-grid {
                gap: 40px;
            }

            .contact-form-wrapper {
                padding: 40px;
            }
        }

        @media (max-width: 992px) {
            .contact-section {
                padding: 80px 0;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .contact-container {
                padding: 0 30px;
            }

            .section-title {
                font-size: 28px;
            }
        }

        @media (max-width: 768px) {
            .contact-section {
                padding: 60px 0;
            }

            .contact-container {
                padding: 0 20px;
            }

            .contact-form-wrapper {
                padding: 30px 25px;
            }

            .section-title {
                font-size: 24px;
            }

            .form-input {
                padding: 14px 18px;
                font-size: 14px;
            }

            .btn-submit {
                padding: 16px 32px;
                font-size: 14px;
            }

            .info-card {
                padding: 25px;
                gap: 16px;
            }

            .info-icon {
                width: 45px;
                height: 45px;
            }

            .info-icon i {
                font-size: 18px;
            }

            .info-title {
                font-size: 15px;
            }

            .info-text {
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .contact-form-wrapper {
                padding: 25px 20px;
            }

            .section-title {
                font-size: 22px;
            }

            .title-underline {
                width: 50px;
                height: 3px;
            }

            .info-card {
                padding: 20px;
                flex-direction: column;
                text-align: center;
                align-items: center;
            }
        }
    