/* 
================================================================
MODERN FRONTEND DESIGN SYSTEM - 2025 Standard
SUGC University Website
================================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* 3 Main Theme Colors */
    --navy-blue: #06264A;
    --gold: #D4AF37;
    --white: #ffffff;

    --primary: #06264A;
    --primary-light: #0d3b6e;
    --primary-dark: #031427;
    --secondary: #D4AF37;
    --accent: #D4AF37;
    --text-main: #06264A;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --glass: rgba(255, 255, 255, 0.85);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-top: 0;
    color: var(--primary-dark);
}

a {
    transition: var(--transition);
    text-decoration: none;
}

/* Header & Navigation Revamp */
/* Header & Navigation Revamp */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.modern-header.scrolled {
    padding: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.header-spacing {
    height: 90px;
}

/* Header Branding */
.header-branding {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    z-index: 1200;
}

.header-logo img {
    height: 52px;
    width: 400px;
    display: block;
    transition: var(--transition);
}

.header-title-group {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.college-name {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin: 0;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.college-tagline {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    margin: 4px 0 0 0;
    line-height: 1;
    white-space: nowrap;
}

/* Desktop Navigation */
.nav-menu-container {
    height: 100%;
    margin-left: 20px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--text-main);
    font-weight: 1000;
    font-size: 13px;
    padding: 8px 6px;
    border-radius: 6px;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(26, 35, 126, 0.05);
}

.nav-link i {
    /* font-size: 10px; */
    margin-left: 4px;
    transition: var(--transition);
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Base Dropdown */
.modern-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-xl);
    border-radius: 12px;
    padding: 12px 0;
    list-style: none;
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: -10px;
}

@media (min-width: 1281px) {
    .nav-item:hover .modern-dropdown {
        display: block;
        animation: fadeInUp 0.3s ease-out;
    }
}

.modern-dropdown li a {
    padding: 10px 20px;
    display: block;
    color: var(--text-main);
    font-weight: 500;
}

.modern-dropdown li a:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 25px;
}

/* Login Button Specific */
.login-btn {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    margin-left: 10px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Mobile Controls */
.mobile-controls {
    display: none;
}

.mobile-menu-wrapper {
    display: none;
}

.mobile-menu-btn {
    width: 35px;
    height: 35px;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2000;
    padding: 0;
}

.mobile-menu-btn .bar {
    width: 24px !important;
    height: 3px !important;
    background: #000000 !important;
    /* display: block !important; */
    margin: 5px auto !important;
    /* transition: all 0.3s ease !important; */
    /* border-radius: 4px !important; */
}

.mobile-menu-btn.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive Breakpoints */
@media (max-width: 1280px) {
    .college-name {
        font-size: 1.1rem;
    }

    .college-tagline {
        display: none;
    }

    .nav-link {
        font-size: 12px;
        padding: 6px 6px;
    }
}

@media (max-width: 1100px) {

    /* Tablet Portrait Breakpoint - Stack or simplify */
    .nav-container {
        height: auto;
        flex-direction: column;
        padding: 15px 24px;
        gap: 10px;
    }

    .header-branding {
        margin-right: auto;
        margin-left: auto;
    }

    .nav-menu-container {
        margin-left: 0;
    }

    .nav-link {
        padding: 5px 8px;
    }
}

@media (max-width: 850px) {

    /* Full Mobile Menu Activation */
    .nav-container {
        height: 80px;
        flex-direction: row;
        justify-content: space-between;
    }

    .modern-header.scrolled .nav-container {
        height: 70px;
    }

    .header-spacing {
        height: 80px;
    }

    .mobile-controls {
        display: block;
    }

    .mobile-menu-wrapper {
        display: block !important;
        position: fixed;
        inset: 0;
        z-index: 99999 !important;
        pointer-events: none;
        visibility: hidden;
        opacity: 0;
        transition: visibility 0.3s, opacity 0.3s;
    }

    .mobile-menu-wrapper.active {
        pointer-events: auto !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mobile-menu-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
        z-index: 99999 !important;
        pointer-events: none;
    }

    .mobile-menu-backdrop.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-menu-panel {
        position: fixed;
        top: 0;
        right: 0;
        width: 320px;
        max-width: 90%;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        padding: 26px 20px 32px;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100000 !important;
        display: flex;
        flex-direction: column;
        gap: 12px;
        pointer-events: auto;
        transform: translateX(100%);
    }

    .mobile-menu-wrapper.active .mobile-menu-panel {
        transform: translateX(0);
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        margin-bottom: 18px;
    }

    .mobile-menu-title {
        font-size: 1.15rem;
        font-weight: 800;
        color: var(--primary);
        letter-spacing: 0.02em;
    }

    .mobile-menu-close {
        width: 38px;
        height: 38px;
        display: grid;
        place-items: center;
        border: none;
        background: rgba(26, 35, 126, 0.08);
        color: var(--primary-dark);
        border-radius: 12px;
        cursor: pointer;
    }

    .mobile-menu-close:hover {
        background: rgba(26, 35, 126, 0.15);
    }

    .mobile-nav-menu-container {
        overflow-y: auto;
        padding-right: 4px;
        padding-bottom: 60px !important;
    }

    .mobile-nav-menu-container .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        height: auto;
    }

    .mobile-nav-menu-container .nav-item {
        width: 100%;
        display: block;
    }

    .mobile-nav-menu-container .nav-link {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        width: 100% !important;
        padding: 12px 15px !important;
        background: #f8fafc !important;
        border-radius: 10px !important;
        color: #06264A !important;
        font-weight: 600 !important;
        font-size: 14px !important;
        text-decoration: none !important;
        border: 1px solid #e2e8f0 !important;
        transition: background 0.2s !important;
        text-align: center !important;
    }

    .mobile-nav-menu-container .nav-link i {
        margin-left: 12px;
    }

    .mobile-nav-menu-container .nav-link:hover {
        background: rgba(26, 35, 126, 0.08);
    }

    .modern-dropdown {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        padding: 8px 0 0 16px;
        margin-top: 6px;
    }

    .modern-dropdown li a {
        padding: 10px 16px;
        display: block;
        border-radius: 12px;
        color: var(--text-main);
        font-weight: 600;
        background: rgba(26, 35, 126, 0.03);
        margin-bottom: 6px;
    }

    .modern-dropdown li a:hover {
        background: rgba(26, 35, 126, 0.12);
        color: var(--primary);
    }

    .nav-item.open .modern-dropdown {
        display: block;
    }

    .nav-item.open .nav-link i {
        transform: rotate(180deg);
    }

    .nav-menu-container {
        display: none !important;
    }

    .desktop-nav-menu {
        display: none !important;
    }

    .mobile-nav-menu {
        display: flex !important;
    }

    body.menu-open {
        overflow: hidden;
        touch-action: none;
    }

    .mobile-controls {
        display: block;
        flex-shrink: 0;
    }

    .nav-link {
        padding: 10px 0;
    }

    .page-header {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        padding: 22px 20px 65px;
        color: white;
        text-align: center;
    }

    .page-header h1 {
        color: white;
        margin-bottom: 10px;
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1rem !important;
        line-height: 1.4 !important;
    }

    .header-spacing {
        height: 80px;
    }

    .nav-container {
        height: 80px;
        flex-direction: row;
        justify-content: space-between;
    }

    .modern-header.scrolled .nav-container {
        height: 70px;
    }

    .header-branding {
        max-width: calc(100% - 60px) !important;
        display: flex !important;
        align-items: center !important;
    }

    .header-logo img {
        height: 42px !important;
        max-width: 100% !important;
        object-fit: contain !important;
    }

    .college-name {
        font-size: 0.95rem;
    }

    .nav-link {
        font-size: 1rem;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .mobile-nav-menu {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        gap: 20px;
    }

    .nav-item {
        width: 100%;
        height: auto;
        display: block;
    }

    .nav-link {
        /* font-size: 1.1rem; */
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-align: center;
        padding: 10px 0;
    }

    .modern-dropdown {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 20px;
        margin-top: 10px;
    }

    .nav-item.open .modern-dropdown {
        display: block;
    }

    .nav-item.open .nav-link i {
        transform: rotate(180deg);
    }
}

@media (max-width: 480px) {
    .header-logo img {
        height: 50px;
    }

    .college-name {
        font-size: 0.95rem;
    }

    .nav-container {
        padding: 0 15px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dark);
    color: var(--white);
    overflow: hidden;
    margin-top: 1px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.9) 0%, rgba(0, 0, 81, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero-content h1 {
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

/* Modern Grid Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    padding: 60px 0;
}

.modern-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Stats Section */
.stats-container {
    padding: 80px 0;
    background: var(--primary);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h2 {
    color: var(--secondary);
    margin-bottom: 8px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Footer Revamp */
.modern-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 80px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 60px;
}

.footer-heading {
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: inherit;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
}

/* Staff & Faculty Cards */
.staff-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    margin-bottom: 30px;
    height: 100%;
}

.staff-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.staff-img-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #ffffff;
}

.staff-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.staff-card:hover .staff-img-wrapper img {
    transform: scale(1.05);
}

.staff-info {
    padding: 24px;
    text-align: center;
}

.staff-name {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.staff-post {
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modern Tabs */
.modern-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    border: none !important;
    margin-bottom: 50px !important;
}

.modern-tabs>li {
    float: none !important;
}

.modern-tabs>li>a {
    border: none !important;
    background: #f1f5f9 !important;
    color: var(--text-main) !important;
    padding: 12px 32px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    transition: var(--transition) !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.modern-tabs>li.active>a,
.modern-tabs>li>a:hover {
    background: var(--primary) !important;
    color: var(--white) !important;
    box-shadow: var(--shadow-md) !important;
}

.modern-tabs i {
    font-size: 18px;
}

.college-name {
    font-weight: 800;
}

.header-logo img {
    height: 65px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
        /* Desktop/tablet horizontal menu hidden in favor of mobile drawer */
    }
}

@media (max-width: 850px) {
    .nav-menu {
        display: flex !important;
    }
}

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

    .con-title h2 {
        font-size: 2rem;
    }
}

/* scroll-reveal animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.reveal-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
    margin-top: 10px;
    margin-bottom: 0;
}

/* Base Utility for Margin Auto */
.ml-auto {
    margin-left: auto;
}

.mr-auto {
    margin-right: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Grid Flexbox alignment fixes to prevent Bootstrap float clearing issues */
.bbafaculties,
.bcafaculties,
.trustee,
.commited {
    display: flex !important;
    flex-wrap: wrap !important;
    row-gap: 30px;
    margin-bottom: 60px;
}

.bbafaculties::before,
.bbafaculties::after,
.bcafaculties::before,
.bcafaculties::after,
.trustee::before,
.trustee::after,
.commited::before,
.commited::after {
    display: none !important;
}

/* Avatar Circle styling for Student Portal Sidebar */
.avatar-circle {
    width: 100px !important;
    height: 100px !important;
    border-radius: 50% !important;
    background: var(--bg-light) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    border: 3px solid var(--primary-light) !important;
    margin: 0 auto 15px !important;
}

.avatar-circle img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Modern Faculty & Trustee Card Style */
.faculty-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    text-align: center;
    padding: 30px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.faculty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.faculty-avatar-container {
    width: 300px;
    /* height: 180px; */
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid #f1f5f9;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faculty-card:hover .faculty-avatar-container {
    border-color: var(--primary-light);
    transform: scale(1.05);
}

.faculty-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faculty-info {
    width: 100%;
}

.faculty-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 8px 0;
}

.faculty-designation {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faculty-detail {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.faculty-detail i {
    color: var(--primary-light);
    font-size: 14px;
    width: 16px;
}

/* Campus Highlights - News & Events List Styles */
.ho-event ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ho-event ul li {
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 0;
    display: flex;
    align-items: center;
}

.ho-event ul li:last-child {
    border-bottom: none;
}

.ho-ev-date {
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 80px;
    height: 48px;
    margin-right: 20px;
    background: var(--primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.ho-ev-date:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.ho-ev-date a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    text-decoration: none;
}

.ho-ev-link {
    flex-grow: 1;
    min-width: 0;
}

.ho-ev-link a {
    text-decoration: none;
}

.ho-ev-link a h4 {
    color: var(--text-main);
    margin: 0 0 4px 0;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
}

.ho-ev-link a:hover h4 {
    color: var(--primary);
}

.ho-ev-link span {
    color: var(--text-muted);
    font-size: 13px;
}

/* General Page Section Spacing */
.com-sp {
    padding: 0 0;
    position: relative;
    overflow: hidden;
    clear: both;
}

/* Pull content up to overlap page header on inner pages */
.page-header+.com-sp {
    margin-top: 0 !important;
}

/* Standardized Master Page Header Banner System */
.page-header {
    background: #06264A !important;
    padding: 50px 15px 50px !important;
    color: #ffffff !important;
    text-align: center !important;
    margin: 1px 0 20px;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
    z-index: 1;
}

.page-header .container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
}

.page-header h1 {
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    margin-top: 0 !important;
    margin-bottom: 8px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    letter-spacing: -0.5px !important;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.05rem !important;
    font-weight: 400 !important;
    margin-bottom: 0 !important;
    line-height: 1.4 !important;
    text-align: center !important;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .page-header {
        padding: 35px 15px 35px !important;
    }
    .page-header h1 {
        font-size: 1.9rem !important;
        margin-bottom: 6px !important;
    }
    .page-header p {
        font-size: 0.9rem !important;
    }
}