    /* University Header Card with Image on Top */
    .university-header-card {
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        overflow: visible;
        margin-bottom: 30px;
        position: relative;
    }

    .university-featured-image-wrapper {
        width: 100%;
        height: 340px;
        border-radius: 20px 20px 0 0;
        overflow: hidden;
        background: #f5f5f5;
    }

    .university-featured-image-wrapper img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .university-content-wrapper {
        position: relative;
        padding: 80px 30px 40px;
        text-align: center;
    }

    .university-logo-wrapper {
        position: absolute;
        top: -60px;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 120px;
        background: white;
        border-radius: 50%;
        padding: 15px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }

    .university-logo-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .university-title-info {
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }

    .university-title-info h3 {
        margin: 0 0 15px 0;
        font-size: 32px;
        font-weight: 700;
        color: #1a1a1a;
        line-height: 1.3;
    }

    .university-location {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin: 0;
        color: #666;
        font-size: 16px;
        font-weight: 500;
    }

    .university-location i {
        color: #ff4a79;
        font-size: 16px;
    }

    /* Stats and Description Section */
    .university-info-section {
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 30px;
        margin-bottom: 30px;
    }

    .university-stats-row {
        display: flex;
        justify-content: space-around;
        gap: 20px;
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 2px solid #f0f0f0;
    }

    .stat-item {
        text-align: center;
        flex: 1;
    }

    .stat-item i {
        font-size: 32px;
        color: #ff4a79;
        margin-bottom: 10px;
        display: block;
    }

    .stat-item span {
        display: block;
        font-size: 24px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 5px;
    }

    .stat-item p {
        margin: 0;
        color: #666;
        font-size: 14px;
    }

    .university-description {
        margin-bottom: 25px;
        color: #444;
        line-height: 1.8;
    }

    .university-description[dir="ltr"] {
        text-align: left;
        direction: ltr;
    }

    .university-description[dir="rtl"] {
        text-align: right;
        direction: rtl;
    }

    /* Normalize the admin-authored rich content (from the WYSIWYG description) so its
       paragraphs, list items and bullet/number markers all share the SAME body size
       and consistent spacing — previously list items & markers inherited a larger
       size from the theme, making them look bigger than the normal text (PDF s11). */
    .university-description p {
        font-size: 16px;
        line-height: 1.9;
        margin-bottom: 16px;
    }

    .university-description ul,
    .university-description ol {
        margin: 0 0 16px;
        padding-inline-start: 22px;
    }

    .university-description ul {
        list-style: disc;
    }

    .university-description ol {
        list-style: decimal;
    }

    .university-description li {
        font-size: 16px;
        line-height: 1.9;
        margin-bottom: 8px;
    }

    .university-description li::marker {
        font-size: 1em;
        color: inherit;
    }

    .university-description h1,
    .university-description h2,
    .university-description h3,
    .university-description h4,
    .university-description h5,
    .university-description h6 {
        font-size: 20px;
        line-height: 1.5;
        font-weight: 700;
        margin: 22px 0 12px;
        color: #1f1f25;
    }

    @media (max-width: 768px) {
        .university-description p,
        .university-description li {
            font-size: 15px;
        }

        .university-description h1,
        .university-description h2,
        .university-description h3,
        .university-description h4,
        .university-description h5,
        .university-description h6 {
            font-size: 18px;
        }
    }

    .starting-fee {
        text-align: center;
        font-size: 20px;
        margin-bottom: 20px;
    }

    .starting-fee span {
        color: #ff4a79;
        font-size: 28px;
        font-weight: 700;
    }

    .apply-now-btn {
        display: block;
        text-align: center;
        margin: 0 auto;
        max-width: 250px;
    }

    /* Static Content Sections */
    .static-section {
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 40px;
        margin-bottom: 30px;
    }

    .section-cta {
        text-align: center;
        margin-top: 30px;
        padding-top: 25px;
        border-top: 2px solid #f0f0f0;
    }

    .section-cta-btn {
        display: inline-block;
        background: linear-gradient(135deg, #ff4a79 0%, #ff6b96 100%);
        color: #fff;
        padding: 14px 40px;
        border-radius: 30px;
        font-size: 18px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(255, 74, 121, 0.3);
    }

    .section-cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 74, 121, 0.4);
        color: #fff;
    }

    .section-cta-btn i {
        margin-left: 8px;
    }

    [dir="rtl"] .section-cta-btn i {
        margin-left: 0;
        margin-right: 8px;
    }

    .section-title {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
        font-size: 28px;
        font-weight: 700;
        color: #1a1a1a;
    }

    .section-title .icon {
        color: #ff4a79;
        font-size: 22px;
    }

    .section-subsection {
        margin-bottom: 30px;
    }

    .subsection-title {
        font-size: 20px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid #ff4a79;
    }

    .subsection-content {
        color: #444;
        line-height: 1.8;
        font-size: 16px;
    }

    .subsection-list {
        list-style: none;
        padding: 0;
        margin: 15px 0;
    }

    .subsection-list li {
        padding: 10px 0 10px 30px;
        position: relative;
        color: #444;
        line-height: 1.6;
    }

    .subsection-list li:before {
        content: "●";
        position: absolute;
        left: 0;
        color: #ff4a79;
        font-size: 20px;
    }

    [dir="rtl"] .subsection-list li {
        padding: 10px 30px 10px 0;
    }

    [dir="rtl"] .subsection-list li:before {
        left: auto;
        right: 0;
    }

    /* Registration Steps */
    .registration-steps {
        counter-reset: step-counter;
    }

    .step-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 20px;
        padding: 20px;
        background: #f9f9f9;
        border-radius: 10px;
        position: relative;
    }

    .step-number {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        background: #ff4a79;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 18px;
    }

    .step-content {
        flex: 1;
        color: #444;
        line-height: 1.6;
    }

    /* Why ApplyUni Grid */
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 25px;
    }

    .benefit-card {
        background: linear-gradient(135deg, #ff4a79 0%, #ff6b96 100%);
        color: #fff;
        padding: 25px;
        border-radius: 15px;
        text-align: center;
        transition: transform 0.3s ease;
    }

    .benefit-card:hover {
        transform: translateY(-5px);
    }

    .benefit-card i {
        font-size: 32px;
        margin-bottom: 15px;
        display: block;
        color: #fff;
    }

    .benefit-card h4 {
        font-size: 16px;
        font-weight: 600;
        margin: 0;
        color: #fff;
    }

    /* Contact Information */
    .contact-info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }

    .contact-card {
        background: #2C3E50;
        padding: 15px 20px;
        border-radius: 12px;
        text-align: center;
        border: 3px solid #ff4a79;
        min-height: auto;
    }

    .contact-card i {
        font-size: 24px;
        color: #ff4a79;
        margin-bottom: 8px;
        display: block;
    }

    .contact-card h4 {
        font-size: 13px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 5px;
        line-height: 1.2;
    }

    .contact-card a {
        color: #fff;
        text-decoration: none;
        font-weight: 700;
        direction: ltr;
        display: inline-block;
        font-size: 15px;
        line-height: 1.3;
    }

    .contact-card a:hover {
        color: #ff4a79;
    }

    /* University Details Accordion Styling */
    .accordion-item {
        border: none !important;
        margin-bottom: 15px !important;
    }

    .accordion-button {
        background-color: #fff !important;
        color: #1a1a1a !important;
        font-size: 18px !important;
        font-weight: 600 !important;
        padding: 20px 25px !important;
        border-bottom: 2px solid #ff4a79 !important;
    }

    .accordion-button:not(.collapsed) {
        background-color: #ff4a79 !important;
        color: #fff !important;
        box-shadow: none !important;
    }

    .accordion-button:focus {
        box-shadow: none !important;
        border-color: #ff4a79 !important;
    }

    .accordion-button::after {
        background-image: none !important;
        content: "▼" !important;
        font-size: 14px;
        color: #ff4a79;
    }

    .accordion-button:not(.collapsed)::after {
        color: #fff;
        transform: rotate(180deg);
    }

    .accordion-body {
        padding: 25px !important;
        background-color: #f9f9f9 !important;
        line-height: 1.8;
        color: #444;
    }

    /* Programs Tabs Styling */
    .course-details-btn-wrapper {
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 30px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .course__text p {
        color: #444;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .nav-tabs {
        border-bottom: 2px solid #f0f0f0 !important;
        gap: 10px;
    }

    .nav-tabs .nav-link {
        border: 2px solid #e0e0e0 !important;
        border-radius: 10px !important;
        padding: 12px 25px !important;
        color: #444 !important;
        font-weight: 600 !important;
        background-color: #fff !important;
        transition: all 0.3s ease !important;
        margin-bottom: 10px;
    }

    .nav-tabs .nav-link:hover {
        border-color: #ff4a79 !important;
        color: #ff4a79 !important;
        background-color: #fff5f8 !important;
    }

    .nav-tabs .nav-link.active {
        background-color: #ff4a79 !important;
        color: #fff !important;
        border-color: #ff4a79 !important;
    }

    .tab-content {
        margin-top: 30px;
    }

    /* Hosni Headline Styling */
    .hosni-headline .headline {
        font-size: 32px;
        font-weight: 700;
        color: #1a1a1a;
    }

    .hosni-headline .highlight {
        color: #ff4a79;
    }

    .hosni-headline .line {
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, #ff4a79 0%, #ff6b96 100%);
        margin: 20px auto;
        border-radius: 2px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .university-featured-image-wrapper {
            height: 200px;
        }

        .university-content-wrapper {
            padding: 70px 20px 30px;
        }

        .university-logo-wrapper {
            width: 100px;
            height: 100px;
            top: -50px;
            padding: 12px;
        }

        .university-title-info h3 {
            font-size: 26px;
        }

        .university-location {
            font-size: 15px;
        }

        .university-stats-row {
            gap: 10px;
        }

        .stat-item {
            padding: 10px 5px;
        }

        .stat-item i {
            font-size: 24px;
        }

        .stat-item span {
            font-size: 18px;
        }

        .stat-item p {
            font-size: 12px;
        }

        .static-section {
            padding: 25px 20px;
        }

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

        .subsection-title {
            font-size: 18px;
        }

        .benefits-grid,
        .contact-info-grid {
            grid-template-columns: 1fr;
        }

        .step-item {
            flex-direction: column;
            text-align: center;
        }

        .step-number {
            margin: 0 auto;
        }
    }

    @media (max-width: 480px) {
        .university-content-wrapper {
            padding: 60px 15px 25px;
        }

        .university-logo-wrapper {
            width: 90px;
            height: 90px;
            top: -45px;
        }

        .university-title-info h3 {
            font-size: 22px;
        }

        .university-location {
            font-size: 14px;
        }

        .static-section {
            padding: 20px 15px;
        }

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