        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cairo', sans-serif;
            background-color: #fff;
            color: #1a1a1a;
            line-height: 1.6;
        }

        /* Header */
        .skyrise-contact-header {
            background-color: rgba(255, 255, 255, 0.8);
            border-bottom: 1px solid rgba(255, 254, 254, 0.2);
            padding: 16px 80px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .skyrise-contact-header-container {
            width: 100%;
            max-width: 1280px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .skyrise-contact-logo {
            width: 184px;
            height: 58px;
            object-fit: cover;
        }

        .skyrise-contact-nav {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .skyrise-contact-nav-link {
            font-size: 16px;
            font-weight: 500;
            color: #1d1a16;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 4px;
            cursor: pointer;
        }

        .skyrise-contact-dropdown-icon {
            width: 24px;
            height: 24px;
            transform: rotate(180deg);
        }

        .skyrise-contact-search-box {
            width: 228px;
            height: 46px;
            background-color: rgba(246, 247, 250, 0.8);
            border: 0.8px solid rgba(227, 229, 232, 0.5);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 16.8px;
        }

        .skyrise-contact-search-box input {
            background: transparent;
            border: none;
            outline: none;
            font-family: 'Cairo', sans-serif;
            font-size: 14px;
            color: #777;
            width: 100%;
            text-align: right;
        }

        .skyrise-contact-search-box input::placeholder {
            color: #777;
        }

        .skyrise-contact-search-icon {
            width: 17px;
            height: 17px;
            color: #777;
            flex-shrink: 0;
        }

        .skyrise-contact-header-actions {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .skyrise-contact-btn-lang {
            display: flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 10px;
        }

        .skyrise-contact-btn-lang svg {
            width: 20px;
            height: 20px;
            color: #4a4a4a;
        }

        .skyrise-contact-btn-lang span {
            font-family: 'Cairo', sans-serif;
            font-size: 14px;
            color: #4a4a4a;
        }

        .skyrise-contact-btn-bell {
            width: 40px;
            height: 40px;
            background: transparent;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .skyrise-contact-btn-bell svg {
            width: 20px;
            height: 20px;
            color: #4a4a4a;
        }

        .skyrise-contact-btn-login {
            display: flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #066eb7 0%, #055c98 100%);
            border: none;
            border-radius: 14px;
            padding: 10px 20px;
            height: 46px;
            cursor: pointer;
        }

        .skyrise-contact-btn-login svg {
            width: 17.5px;
            height: 17.5px;
            color: white;
        }

        .skyrise-contact-btn-login span {
            font-family: 'Cairo', sans-serif;
            font-size: 14px;
            color: white;
        }

        /* Hero Section */
        .skyrise-contact-hero {
            position: relative;
            width: 100%;
            height: 421px;
            overflow: hidden;
        }

        .skyrise-contact-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .skyrise-contact-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        }

        .skyrise-contact-hero-content {
            position: relative;
            z-index: 1;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 80px;
            gap: 28px;
        }

        .skyrise-contact-hero-content h1 {
            font-size: 48px;
            font-weight: 700;
            color: white;
            line-height: 60px;
        }

        .skyrise-contact-hero-content p {
            font-size: 20px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.8);
            line-height: 35px;
            max-width: 733px;
        }

        /* Main Content */
        .skyrise-contact-main-content {
            background-color: white;
            padding: 78px 80px;
            width: 100%;
        }

        .skyrise-contact-content-container {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            gap: 48px;
        }

        .skyrise-contact-left-side {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .skyrise-contact-right-side {
            flex: 1;
        }

        .skyrise-contact-card {
            background-color: white;
            border: 0.8px solid #e3e5e8;
            border-radius: 14px;
            padding: 24px;
        }

        /* Contact Info Card */
        .skyrise-contact-info h2,
        .skyrise-contact-form h2 {
            font-size: 28px;
            font-weight: 700;
            color: #1a1a1a;
            line-height: 42px;
            text-align: right;
            margin-bottom: 24px;
        }

        .skyrise-contact-info-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .skyrise-contact-info-item {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .skyrise-contact-info-icon {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .skyrise-contact-info-icon.skyrise-blue {
            background-color: rgba(6, 110, 183, 0.08);
        }

        .skyrise-contact-info-icon.skyrise-blue svg {
            width: 24px;
            height: 24px;
            color: #066eb7;
        }

        .skyrise-contact-info-icon.skyrise-green {
            background-color: rgba(15, 186, 30, 0.08);
        }

        .skyrise-contact-info-icon.skyrise-green svg {
            width: 24px;
            height: 24px;
            color: #0fba1e;
        }

        .skyrise-contact-info-text {
            text-align: right;
        }

        .skyrise-contact-info-text strong {
            display: block;
            font-size: 16px;
            font-weight: 700;
            color: #1a1a1a;
            line-height: 24px;
            margin-bottom: 8px;
        }

        .skyrise-contact-info-text span {
            font-size: 15px;
            font-weight: 400;
            color: #4a4a4a;
            line-height: 24px;
        }

        .skyrise-contact-info-text a {
            color: inherit;
            text-decoration: none;
        }

        /* Social Media Card */
        .skyrise-contact-social-media h3 {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
            line-height: 30px;
            text-align: right;
            margin-bottom: 24px;
        }

        .skyrise-contact-social-icons {
            display: flex;
            gap: 16px;
        }

        .skyrise-contact-social-icon {
            width: 48px;
            height: 48px;
            border: 1.6px solid #066eb7;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #066eb7;
            transition: all 0.3s ease;
        }

        .skyrise-contact-social-icon:hover {
            background-color: #066eb7;
            color: white;
        }

        .skyrise-contact-social-icon svg {
            width: 20px;
            height: 20px;
        }

        /* Map Location Card */
        .skyrise-contact-map-location {
            background-color: #f6f7fa;
            height: 256px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 11px;
            padding: 0;
            overflow: hidden;
        }

        .skyrise-contact-map-icon {
            width: 64px;
            height: 64px;
            background-color: white;
            border: 1.6px solid #066eb7;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .skyrise-contact-map-icon svg {
            width: 32px;
            height: 32px;
            color: #066eb7;
        }

        .skyrise-contact-map-location p {
            font-size: 15px;
            font-weight: 600;
            color: #4a4a4a;
            line-height: 22.5px;
            text-align: center;
        }

        .skyrise-contact-map-location iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        /* Contact Form */
        .skyrise-contact-form {
            padding: 32px;
        }

        .skyrise-contact-form form {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .skyrise-contact-form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .skyrise-contact-form-group label {
            font-size: 15px;
            font-weight: 600;
            color: #1a1a1a;
            line-height: 22.5px;
        }

        .skyrise-contact-form-group label .skyrise-contact-optional {
            color: #777;
        }

        .skyrise-contact-form-group input,
        .skyrise-contact-form-group textarea {
            width: 100%;
            background-color: #f6f7fa;
            border: 0.8px solid #e3e5e8;
            border-radius: 12px;
            padding: 12px 16px;
            font-family: 'Cairo', sans-serif;
            font-size: 15px;
            color: #1a1a1a;
            text-align: right;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .skyrise-contact-form-group input {
            height: 48px;
        }

        .skyrise-contact-form-group textarea {
            height: 170px;
            resize: none;
        }

        .skyrise-contact-form-group input::placeholder,
        .skyrise-contact-form-group textarea::placeholder {
            color: #777;
        }

        .skyrise-contact-form-group input:focus,
        .skyrise-contact-form-group textarea:focus {
            border-color: #066eb7;
        }

        .skyrise-contact-btn-submit {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: linear-gradient(135deg, #066eb7 0%, #055c98 100%);
            border: none;
            border-radius: 12px;
            height: 58px;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .skyrise-contact-btn-submit:hover {
            opacity: 0.9;
        }

        .skyrise-contact-btn-submit svg {
            width: 20px;
            height: 20px;
            color: white;
        }

        .skyrise-contact-btn-submit span {
            font-family: 'Cairo', sans-serif;
            font-size: 17px;
            font-weight: 700;
            color: white;
            line-height: 25.5px;
        }

        /* FAQ Section */
        .skyrise-contact-faq-section {
            background-color: #f6f7fa;
            padding: 64px 48px;
            width: 100%;
        }

        .skyrise-contact-faq-container {
            max-width: 1344px;
            margin: 0 auto;
        }

        .skyrise-contact-section-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            margin-bottom: 64px;
        }

        .skyrise-contact-section-header h2 {
            font-size: 36px;
            font-weight: 700;
            color: #1a1a1a;
            line-height: 54px;
            text-align: center;
        }

        .skyrise-contact-header-line {
            width: 80px;
            height: 6px;
            background: linear-gradient(to right, #066eb7, #0fba1e);
            border-radius: 999px;
        }

        .skyrise-contact-faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .skyrise-contact-faq-item {
            background-color: white;
            border: 0.8px solid #e3e5e8;
            border-radius: 14px;
            overflow: hidden;
        }

        .skyrise-contact-faq-question {
            width: 100%;
            height: 75px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 24px;
            background: transparent;
            border: none;
            cursor: pointer;
        }

        .skyrise-contact-faq-question span {
            font-family: 'Cairo', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
            line-height: 27px;
            text-align: right;
        }

        .skyrise-contact-faq-icon {
            width: 20px;
            height: 20px;
            color: #1a1a1a;
            transition: transform 0.3s ease;
        }

        .skyrise-contact-faq-item.skyrise-active .skyrise-contact-faq-icon {
            transform: rotate(180deg);
        }

        .wpcf7-form {
            display: grid;
            gap: 16px;
            direction: rtl;
        }

        .wpcf7-form input[type="text"],
        .wpcf7-form input[type="email"],
        .wpcf7-form input[type="tel"],
        .wpcf7-form textarea {
            width: 100%;
            border: 1px solid #e3e5e8;
            border-radius: 12px;
            padding: 12px 14px;
            font-family: 'Cairo', sans-serif;
        }

        .wpcf7-form input[type="submit"] {
            border: none;
            border-radius: 12px;
            padding: 12px 16px;
            background: linear-gradient(135deg, #066eb7 0%, #055c98 100%);
            color: #fff;
            font-weight: 700;
            cursor: pointer;
        }

        .edulink-cf7-fallback {
            margin-top: 16px;
            background: #f0f7fc;
            border: 1px solid #c3dff4;
            color: #044a7a;
            border-radius: 12px;
            padding: 12px 16px;
        }

        .skyrise-contact-faq-answer {
            background-color: rgba(246, 247, 250, 0.5);
            border-top: 0.8px solid #e3e5e8;
            padding: 15px;
            display: none;
        }

        .skyrise-contact-faq-item.skyrise-active .skyrise-contact-faq-answer {
            display: block;
        }

        .skyrise-contact-faq-answer p {
            font-size: 15px;
            font-weight: 400;
            color: #4a4a4a;
            line-height: 25.5px;
            text-align: right;
        }

        /* CTA Section */
        .skyrise-contact-cta-section {
            background-color: #f6f7fa;
            height: 369px;
            position: relative;
            overflow: hidden;
        }

        .skyrise-contact-cta-blur-1 {
            position: absolute;
            top: 0;
            left: 776px;
            width: 384px;
            height: 384px;
            background-color: rgba(6, 110, 183, 0.05);
            border-radius: 50%;
            filter: blur(64px);
        }

        .skyrise-contact-cta-blur-2 {
            position: absolute;
            top: -15.4px;
            left: 0;
            width: 384px;
            height: 384px;
            background-color: rgba(15, 186, 30, 0.05);
            border-radius: 50%;
            filter: blur(64px);
        }

        .skyrise-contact-cta-content {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            text-align: center;
            gap: 20px;
        }

        .skyrise-contact-cta-content h2 {
            font-size: 42px;
            font-weight: 700;
            color: #1a1a1a;
            line-height: 52.5px;
        }

        .skyrise-contact-cta-content p {
            font-size: 18px;
            font-weight: 400;
            color: #4a4a4a;
            line-height: 30.6px;
        }

        .skyrise-contact-btn-cta {
            display: flex;
            align-items: center;
            gap: 10px;
            background-color: #066eb7;
            border: none;
            border-radius: 12px;
            padding: 16px 40px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            margin-top: 20px;
            text-decoration: none;
        }

        .skyrise-contact-btn-cta:hover {
            background-color: #055c98;
        }

        .skyrise-contact-btn-cta svg {
            width: 20px;
            height: 20px;
            color: white;
        }

        .skyrise-contact-btn-cta span {
            font-family: 'Cairo', sans-serif;
            font-size: 17px;
            font-weight: 700;
            color: white;
            line-height: 25.5px;
        }

        /* Footer */
        .skyrise-contact-footer {
            background: linear-gradient(to bottom, #055c98, #044a7a);
            padding: 100px 0 48px;
            position: relative;
            overflow: hidden;
        }

        .skyrise-contact-footer-wave {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            transform: rotate(180deg);
            color: #f6f7fa;
        }

        .skyrise-contact-footer-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 80px;
        }

        .skyrise-contact-footer-content {
            display: flex;
            justify-content: space-between;
            gap: 64px;
            margin-bottom: 64px;
        }

        .skyrise-contact-footer-brand {
            max-width: 193px;
        }

        .skyrise-contact-footer-logo {
            width: 184px;
            height: 58px;
            object-fit: cover;
            margin-bottom: 12px;
        }

        .skyrise-contact-footer-brand p {
            font-size: 14px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.8);
            line-height: 25.2px;
            text-align: right;
        }

        .skyrise-contact-footer-links h4,
        .skyrise-contact-footer-contact h4 {
            font-size: 20px;
            font-weight: 700;
            color: white;
            line-height: 30px;
            margin-bottom: 24px;
        }

        .skyrise-contact-footer-links ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .skyrise-contact-footer-links li {
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .skyrise-contact-footer-links li::after {
            content: '';
            width: 6px;
            height: 6px;
            background-color: #0fba1e;
            border-radius: 50%;
        }

        .skyrise-contact-footer-links a {
            font-size: 14px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            line-height: 21px;
            transition: color 0.3s ease;
        }

        .skyrise-contact-footer-links a:hover {
            color: white;
        }

        .skyrise-contact-footer-contact .skyrise-contact-contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
        }

        .skyrise-contact-footer-contact .skyrise-contact-contact-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .skyrise-contact-footer-contact .skyrise-contact-contact-icon svg {
            width: 20px;
            height: 20px;
            color: white;
        }

        .skyrise-contact-footer-contact .skyrise-contact-contact-item span {
            font-size: 14px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.7);
            line-height: 21px;
            text-align: right;
        }

        .skyrise-contact-footer-socials {
            display: flex;
            gap: 12px;
            margin-top: 10px;
        }

        .skyrise-contact-footer-social-icon {
            width: 48px;
            height: 48px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: background-color 0.3s ease;
        }

        .skyrise-contact-footer-social-icon:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

        .skyrise-contact-footer-social-icon svg {
            width: 20px;
            height: 20px;
        }

        .skyrise-contact-footer-bottom {
            border-top: 0.8px solid rgba(255, 255, 255, 0.1);
            padding-top: 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .skyrise-contact-footer-bottom-links {
            display: flex;
            gap: 24px;
        }

        .skyrise-contact-footer-bottom-links a {
            font-size: 14px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            line-height: 21px;
            transition: color 0.3s ease;
        }

        .skyrise-contact-footer-bottom-links a:hover {
            color: white;
        }

        .skyrise-contact-footer-bottom p {
            font-size: 14px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.6);
            line-height: 21px;
        }

        /* Responsive */
        @media (max-width: 1280px) {
            .skyrise-contact-header {
                padding: 16px 40px;
            }

            .skyrise-contact-main-content {
                padding: 40px;
            }

            .skyrise-contact-content-container {
                flex-direction: column;
            }

            .skyrise-contact-footer-content {
                flex-wrap: wrap;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .skyrise-contact-header {
                padding: 16px 20px;
            }

            .skyrise-contact-nav {
                display: none;
            }

            .skyrise-contact-hero-content h1 {
                font-size: 32px;
                line-height: 40px;
            }

            .skyrise-contact-hero-content p {
                font-size: 16px;
                line-height: 28px;
            }

            .skyrise-contact-main-content {
                padding: 20px;
            }

            .skyrise-contact-faq-section {
                padding: 40px 20px;
            }

            .skyrise-contact-section-header h2 {
                font-size: 28px;
                line-height: 42px;
            }

            .skyrise-contact-cta-content h2 {
                font-size: 28px;
                line-height: 36px;
            }

            .skyrise-contact-footer-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .skyrise-contact-footer-bottom {
                flex-direction: column;
                gap: 20px;
            }
        }
