 
        /* 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;
            }
        }
    
    
    
    
     
        /* Partnership Section */
        .partnership-section {
            position: relative;
            padding: 100px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            overflow: hidden;
        }

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

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

        /* Header */
        .partnership-header {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 80px;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 24px;
            background: rgba(1, 174, 239, 0.08);
            border-radius: 50px;
            color: var(--accent-cyan);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
            border: 1px solid rgba(1, 174, 239, 0.15);
        }

        .section-badge i {
            font-size: 14px;
        }

        .section-title {
            font-size: 42px;
            font-weight: 700;
            color: var(--primary-blue);
            line-height: 1.2;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .section-title .highlight {
            color: var(--accent-gold);
        }

        .section-description {
            font-size: 16px;
            font-weight: 400;
            color: rgba(0, 72, 118, 0.7);
            line-height: 1.7;
            margin: 0;
        }

        /* Benefits Grid */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        .benefit-card {
            background: white;
            padding: 35px 30px;
            border-radius: 16px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 72, 118, 0.08);
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-gold));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .benefit-card:hover::before {
            transform: scaleX(1);
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 72, 118, 0.12);
            border-color: rgba(1, 174, 239, 0.2);
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(1, 174, 239, 0.1), rgba(244, 185, 66, 0.1));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .benefit-card:hover .benefit-icon {
            transform: scale(1.05);
            background: linear-gradient(135deg, rgba(1, 174, 239, 0.15), rgba(244, 185, 66, 0.15));
        }

        .benefit-icon i {
            font-size: 26px;
            color: var(--accent-cyan);
        }

        .benefit-card h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .benefit-card p {
            font-size: 14px;
            font-weight: 400;
            color: rgba(0, 72, 118, 0.65);
            line-height: 1.6;
            margin: 0;
        }

        /* Partnership Types */
        .partnership-types {
            background: white;
            padding: 50px 40px;
            border-radius: 20px;
            margin-bottom: 80px;
            border: 1px solid rgba(0, 72, 118, 0.08);
        }

        .types-title {
            font-size: 26px;
            font-weight: 600;
            color: var(--primary-blue);
            text-align: center;
            margin-bottom: 40px;
            letter-spacing: -0.5px;
        }

        .types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 25px;
        }

        .type-card {
            text-align: center;
            padding: 30px 20px;
            background: linear-gradient(135deg, rgba(1, 174, 239, 0.03), rgba(244, 185, 66, 0.03));
            border-radius: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 72, 118, 0.06);
        }

        .type-card:hover {
            transform: translateY(-3px);
            background: white;
            box-shadow: 0 10px 30px rgba(0, 72, 118, 0.08);
            border-color: rgba(1, 174, 239, 0.15);
        }

        .type-icon {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .type-card:hover .type-icon {
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-gold));
        }

        .type-icon i {
            font-size: 22px;
            color: var(--accent-cyan);
            transition: color 0.3s ease;
        }

        .type-card:hover .type-icon i {
            color: white;
        }

        .type-card h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .type-card p {
            font-size: 13px;
            font-weight: 400;
            color: rgba(0, 72, 118, 0.65);
            line-height: 1.5;
            margin: 0;
        }

        /* Partnership Form Wrapper */
        .partnership-form-wrapper {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 72, 118, 0.08);
            border: 1px solid rgba(0, 72, 118, 0.08);
        }

        .form-content {
            display: grid;
            grid-template-columns: 40% 60%;
            min-height: 700px;
        }

        .form-left {
            background: linear-gradient(135deg, var(--primary-blue), #003a5e);
            padding: 50px 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
        }

        .form-left::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(1, 174, 239, 0.1) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.8;
            }
        }

        .form-intro {
            position: relative;
            z-index: 1;
        }

        .form-icon {
            width: 60px;
            height: 60px;
            background: rgba(244, 185, 66, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .form-icon i {
            font-size: 28px;
            color: var(--accent-gold);
        }

        .form-intro h3 {
            font-size: 26px;
            font-weight: 600;
            color: white;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .form-intro p {
            font-size: 14px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin: 0;
        }

        .contact-info {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .info-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .info-icon i {
            font-size: 16px;
            color: var(--accent-cyan);
        }

        .info-text {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }

        .info-label {
            font-size: 12px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .info-value {
            font-size: 14px;
            font-weight: 500;
            color: white;
        }

        /* Form Right */
        .form-right {
            padding: 50px 40px;
            background: white;
        }

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

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            font-size: 13px;
            font-weight: 600;
            color: var(--primary-blue);
            letter-spacing: 0.2px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 14px 16px;
            border: 1px solid rgba(0, 72, 118, 0.15);
            border-radius: 10px;
            font-size: 14px;
            font-weight: 400;
            color: var(--primary-blue);
            background: white;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-family: 'Inter', sans-serif;
        }

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

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23004876' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            padding-right: 40px;
        }

        .checkbox-label {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            cursor: pointer;
            font-size: 13px;
            color: rgba(0, 72, 118, 0.8);
            font-weight: 400;
        }

        .checkbox-label input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
            accent-color: var(--accent-cyan);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .submit-btn {
            padding: 16px 36px;
            background: var(--accent-gold);
            color: var(--primary-blue);
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            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(244, 185, 66, 0.3);
            margin-top: 10px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(244, 185, 66, 0.4);
            background: #ffca5d;
        }

        .submit-btn i {
            font-size: 14px;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .submit-btn:hover i {
            transform: translateX(3px);
        }

        /* Success Message */
        .success-message {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 72, 118, 0.95);
            backdrop-filter: blur(10px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .success-message.show {
            display: flex;
            opacity: 1;
        }

        .success-content {
            background: white;
            padding: 50px 40px;
            border-radius: 20px;
            text-align: center;
            max-width: 500px;
            transform: scale(0.8);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .success-message.show .success-content {
            transform: scale(1);
        }

        .success-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(1, 174, 239, 0.1), rgba(244, 185, 66, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .success-icon i {
            font-size: 40px;
            color: var(--accent-cyan);
        }

        .success-content h3 {
            font-size: 26px;
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }

        .success-content p {
            font-size: 14px;
            color: rgba(0, 72, 118, 0.7);
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .close-success {
            padding: 14px 32px;
            background: var(--accent-gold);
            color: var(--primary-blue);
            border: none;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .close-success:hover {
            background: #ffca5d;
            transform: translateY(-2px);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .partnership-container {
                padding: 0 30px;
            }

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

            .benefits-grid {
                gap: 25px;
            }
        }

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

            .partnership-header {
                margin-bottom: 60px;
            }

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

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                margin-bottom: 60px;
            }

            .partnership-types {
                padding: 40px 30px;
                margin-bottom: 60px;
            }

            .types-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .form-content {
                grid-template-columns: 1fr;
            }

            .form-left {
                padding: 40px 30px;
            }

            .form-right {
                padding: 40px 30px;
            }
        }

        @media (max-width: 768px) {
            .partnership-container {
                padding: 0 20px;
            }

            .partnership-section {
                padding: 60px 0;
            }

            .partnership-header {
                margin-bottom: 50px;
            }

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

            .section-description {
                font-size: 15px;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-bottom: 50px;
            }

            .benefit-card {
                padding: 30px 25px;
            }

            .partnership-types {
                padding: 35px 25px;
                margin-bottom: 50px;
            }

            .types-title {
                font-size: 22px;
                margin-bottom: 30px;
            }

            .types-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .form-left {
                padding: 35px 25px;
            }

            .form-intro h3 {
                font-size: 22px;
            }

            .form-right {
                padding: 35px 25px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .partnership-form {
                gap: 15px;
            }

            .submit-btn {
                width: 100%;
            }

            .success-content {
                padding: 40px 30px;
                margin: 20px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 24px;
            }

            .section-description {
                font-size: 14px;
            }

            .benefit-card h3 {
                font-size: 16px;
            }

            .benefit-card p {
                font-size: 13px;
            }

            .types-title {
                font-size: 20px;
            }

            .type-card h4 {
                font-size: 15px;
            }

            .form-intro h3 {
                font-size: 20px;
            }

            .success-content h3 {
                font-size: 22px;
            }
        }
    