/* ============================================
   COMMON PAGE STYLES - All Pages
   ============================================ */

/* Page Wrapper - Common for all pages */
.page-wrapper,
.privacy-wrapper,
.about-wrapper,
.contact-wrapper,
.terms-wrapper,
.refund-wrapper,
.disclaimer-wrapper,
.cookie-wrapper,
.career-wrapper,
.career-detail-wrapper,
.leadership-wrapper {
    background: linear-gradient(135deg, #f2f7fc 0%, #e3edfa 100%);
    min-height: 100vh;
    padding-top: 120px; /* Account for fixed header (40px mini-header + 80px navbar) */
    padding-bottom: 3rem;
}

/* Hero Section - Common for all pages */
.page-hero-bg,
.privacy-hero-bg,
.about-hero-bg,
.contact-hero-section-bg,
.terms-hero-bg,
.refund-hero-bg,
.disclaimer-hero-bg,
.cookie-hero-bg,
.career-hero-bg,
.leadership-hero-bg {
    min-height: 360px;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    border-radius: 0 0 3rem 3rem;
    box-shadow: 0 10px 40px rgba(23, 96, 187, 0.2);
    position: relative;
    margin-top: -120px; /* Offset the wrapper padding */
    margin-bottom: 0;
    padding-top: 120px; /* Account for fixed header (40px mini-header + 80px navbar) */
    padding-bottom: 3.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.career-hero-bg .container,
.career-detail-wrapper .career-hero-bg .container {
    text-align: center;
}

.page-hero-bg::before,
.privacy-hero-bg::before,
.about-hero-bg::before,
.contact-hero-section-bg::before,
.terms-hero-bg::before,
.refund-hero-bg::before,
.disclaimer-hero-bg::before,
.cookie-hero-bg::before,
.career-hero-bg::before,
.leadership-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

/* Hero Title - Common for all pages */
.page-hero-title,
.privacy-hero-title,
.about-hero-title,
.contact-hero-title,
.terms-hero-title,
.refund-hero-title,
.disclaimer-hero-title,
.cookie-hero-title,
.career-hero-title,
.leadership-hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    text-align: center;
}
/* Page Container - Common for all pages */
.page-container,
.privacy-policy-container,
.about-container,
.contact-container,
.terms-container,
.refund-container,
.disclaimer-container,
.cookie-container,
.career-container,
.leadership-container {
    margin-top: -90px;
    margin-bottom: 0;
    position: relative;
    z-index: 10;
}
/* Page Lead - Common for all pages */
.page-lead,
.privacy-lead,
.about-lead,
.contact-lead,
.terms-lead,
.refund-lead,
.disclaimer-lead,
.cookie-lead,
.career-lead,
.leadership-lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    margin-bottom: 0;
    opacity: 0.98;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

/* Page Content - Common for all pages */
.page-content,
.privacy-policy-content,
.about-content,
.contact-content,
.terms-content,
.refund-content,
.disclaimer-content,
.cookie-content,
.career-content,
.leadership-content {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(23, 96, 187, 0.12);
    padding: 3rem 3.5rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.page-content:hover,
.privacy-policy-content:hover,
.about-content:hover,
.contact-content:hover,
.terms-content:hover,
.refund-content:hover,
.disclaimer-content:hover,
.cookie-content:hover,
.career-content:hover,
.leadership-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(23, 96, 187, 0.15);
}

/* Section Title - Common for all pages */
.page-section-title,
.privacy-section-title,
.about-section-title,
.contact-section-title,
.terms-section-title,
.refund-section-title,
.disclaimer-section-title,
.cookie-section-title,
.career-section-title,
.leadership-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #155ca6;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e9ecef;
    position: relative;
}

.page-section-title::after,
.privacy-section-title::after,
.about-section-title::after,
.contact-section-title::after,
.terms-section-title::after,
.refund-section-title::after,
.disclaimer-section-title::after,
.cookie-section-title::after,
.career-section-title::after,
.leadership-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
}

.page-section-title i,
.privacy-section-title i,
.about-section-title i,
.contact-section-title i,
.terms-section-title i,
.refund-section-title i,
.disclaimer-section-title i,
.cookie-section-title i,
.career-section-title i,
.leadership-section-title i {
    font-size: 1.4rem;
    color: #1760bb;
}

/* Page Content Typography */
.page-content p,
.privacy-policy-content p,
.about-content p,
.contact-content p,
.terms-content p,
.refund-content p,
.disclaimer-content p,
.cookie-content p,
.career-content p,
.leadership-content p {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    text-align: left;
}

.page-content ul,
.privacy-policy-content ul,
.about-content ul,
.contact-content ul,
.terms-content ul,
.refund-content ul,
.disclaimer-content ul,
.cookie-content ul,
.career-content ul,
.leadership-content ul {
    margin-bottom: 1.5rem;
    padding-left: 0;
    list-style: none;
}

.page-content li,
.privacy-policy-content li,
.about-content li,
.contact-content li,
.terms-content li,
.refund-content li,
.disclaimer-content li,
.cookie-content li,
.career-content li,
.leadership-content li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.7;
    padding-left: 2rem;
    position: relative;
    transition: color 0.3s ease;
}

.page-content li::before,
.privacy-policy-content li::before,
.about-content li::before,
.contact-content li::before,
.terms-content li::before,
.refund-content li::before,
.disclaimer-content li::before,
.cookie-content li::before,
.career-content li::before,
.leadership-content li::before {
    content: '\f00c';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: #1760bb;
    font-size: 1rem;
    font-weight: 700;
}

.page-content li:hover,
.privacy-policy-content li:hover,
.about-content li:hover,
.contact-content li:hover,
.terms-content li:hover,
.refund-content li:hover,
.disclaimer-content li:hover,
.cookie-content li:hover,
.career-content li:hover,
.leadership-content li:hover {
    color: #155ca6;
}

.page-content a,
.privacy-policy-content a,
.about-content a,
.contact-content a,
.terms-content a,
.refund-content a,
.disclaimer-content a,
.cookie-content a,
.career-content a,
.leadership-content a {
    color: #1760bb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-content a:hover:not(.btn):not(.page-contact-btn):not(.privacy-contact-btn):not(.about-contact-btn):not(.contact-contact-btn):not(.terms-contact-btn):not(.refund-contact-btn):not(.disclaimer-contact-btn):not(.cookie-contact-btn):not(.career-contact-btn):not(.leadership-contact-btn):not(.custom-contact-btn),
.privacy-policy-content a:hover:not(.btn):not(.page-contact-btn):not(.privacy-contact-btn):not(.about-contact-btn):not(.contact-contact-btn):not(.terms-contact-btn):not(.refund-contact-btn):not(.disclaimer-contact-btn):not(.cookie-contact-btn):not(.career-contact-btn):not(.leadership-contact-btn):not(.custom-contact-btn),
.about-content a:hover:not(.btn):not(.page-contact-btn):not(.privacy-contact-btn):not(.about-contact-btn):not(.contact-contact-btn):not(.terms-contact-btn):not(.refund-contact-btn):not(.disclaimer-contact-btn):not(.cookie-contact-btn):not(.career-contact-btn):not(.leadership-contact-btn):not(.custom-contact-btn),
.contact-content a:hover:not(.btn):not(.page-contact-btn):not(.privacy-contact-btn):not(.about-contact-btn):not(.contact-contact-btn):not(.terms-contact-btn):not(.refund-contact-btn):not(.disclaimer-contact-btn):not(.cookie-contact-btn):not(.career-contact-btn):not(.leadership-contact-btn):not(.custom-contact-btn),
.terms-content a:hover:not(.btn):not(.page-contact-btn):not(.privacy-contact-btn):not(.about-contact-btn):not(.contact-contact-btn):not(.terms-contact-btn):not(.refund-contact-btn):not(.disclaimer-contact-btn):not(.cookie-contact-btn):not(.career-contact-btn):not(.leadership-contact-btn):not(.custom-contact-btn),
.refund-content a:hover:not(.btn):not(.page-contact-btn):not(.privacy-contact-btn):not(.about-contact-btn):not(.contact-contact-btn):not(.terms-contact-btn):not(.refund-contact-btn):not(.disclaimer-contact-btn):not(.cookie-contact-btn):not(.career-contact-btn):not(.leadership-contact-btn):not(.custom-contact-btn),
.disclaimer-content a:hover:not(.btn):not(.page-contact-btn):not(.privacy-contact-btn):not(.about-contact-btn):not(.contact-contact-btn):not(.terms-contact-btn):not(.refund-contact-btn):not(.disclaimer-contact-btn):not(.cookie-contact-btn):not(.career-contact-btn):not(.leadership-contact-btn):not(.custom-contact-btn),
.cookie-content a:hover:not(.btn):not(.page-contact-btn):not(.privacy-contact-btn):not(.about-contact-btn):not(.contact-contact-btn):not(.terms-contact-btn):not(.refund-contact-btn):not(.disclaimer-contact-btn):not(.cookie-contact-btn):not(.career-contact-btn):not(.leadership-contact-btn):not(.custom-contact-btn),
.career-content a:hover:not(.btn):not(.page-contact-btn):not(.privacy-contact-btn):not(.about-contact-btn):not(.contact-contact-btn):not(.terms-contact-btn):not(.refund-contact-btn):not(.disclaimer-contact-btn):not(.cookie-contact-btn):not(.career-contact-btn):not(.leadership-contact-btn):not(.custom-contact-btn),
.leadership-content a:hover:not(.btn):not(.page-contact-btn):not(.privacy-contact-btn):not(.about-contact-btn):not(.contact-contact-btn):not(.terms-contact-btn):not(.refund-contact-btn):not(.disclaimer-contact-btn):not(.cookie-contact-btn):not(.career-contact-btn):not(.leadership-contact-btn):not(.custom-contact-btn) {
    color: #10509e;
    text-decoration: underline;
}

/* Page Date Badge */
.page-date,
.privacy-date,
.about-date,
.contact-date,
.terms-date,
.refund-date,
.disclaimer-date,
.cookie-date,
.career-date,
.leadership-date {
    color: #5e7ba7;
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 500;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e3edfa;
}

/* Page Intro Box */
.page-intro,
.about-intro {
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #1760bb;
    text-align: left;
}

.page-intro p,
.about-intro p {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.8;
    text-align: left;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-item {
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e3edfa;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(23, 96, 187, 0.15);
    border-color: #1760bb;
}

.service-item i {
    font-size: 1.5rem;
    color: #1760bb;
    flex-shrink: 0;
}

.service-item span {
    font-size: 1.05rem;
    color: #495057;
    font-weight: 500;
}

/* Mission Vision Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mission-vision-card {
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e3edfa;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
}

.mission-vision-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(23, 96, 187, 0.15);
}

.mission-vision-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #155ca6;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mission-vision-card h4 i {
    font-size: 1.5rem;
    color: #1760bb;
}

.mission-vision-card p {
    color: #495057;
    line-height: 1.8;
    margin-bottom: 0;
    text-align: left;
}

/* Contact Button - Common for all pages */
.page-contact-btn,
.privacy-contact-btn,
.about-contact-btn,
.contact-contact-btn,
.terms-contact-btn,
.refund-contact-btn,
.disclaimer-contact-btn,
.cookie-contact-btn,
.career-contact-btn,
.leadership-contact-btn,
.custom-contact-btn,
.btn,
button,
a.btn,
a[class*="btn"] {
    text-decoration: none !important;
}

.page-contact-btn,
.privacy-contact-btn,
.about-contact-btn,
.contact-contact-btn,
.terms-contact-btn,
.refund-contact-btn,
.disclaimer-contact-btn,
.cookie-contact-btn,
.career-contact-btn,
.leadership-contact-btn,
.custom-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    color: #fff !important;
    font-weight: 700;
    border-radius: 12px;
    padding: 1rem 2.5rem;
    box-shadow: 0 4px 20px rgba(23, 96, 187, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    border: none;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
}

.page-contact-btn::before,
.privacy-contact-btn::before,
.about-contact-btn::before,
.contact-contact-btn::before,
.terms-contact-btn::before,
.refund-contact-btn::before,
.disclaimer-contact-btn::before,
.cookie-contact-btn::before,
.career-contact-btn::before,
.leadership-contact-btn::before,
.custom-contact-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.page-contact-btn:hover::before,
.privacy-contact-btn:hover::before,
.about-contact-btn:hover::before,
.contact-contact-btn:hover::before,
.terms-contact-btn:hover::before,
.refund-contact-btn:hover::before,
.disclaimer-contact-btn:hover::before,
.cookie-contact-btn:hover::before,
.career-contact-btn:hover::before,
.leadership-contact-btn:hover::before,
.custom-contact-btn:hover::before {
    width: 300px;
    height: 300px;
}

.page-contact-btn:hover,
.page-contact-btn:focus,
.privacy-contact-btn:hover,
.privacy-contact-btn:focus,
.about-contact-btn:hover,
.about-contact-btn:focus,
.contact-contact-btn:hover,
.contact-contact-btn:focus,
.terms-contact-btn:hover,
.terms-contact-btn:focus,
.refund-contact-btn:hover,
.refund-contact-btn:focus,
.disclaimer-contact-btn:hover,
.disclaimer-contact-btn:focus,
.cookie-contact-btn:hover,
.cookie-contact-btn:focus,
.career-contact-btn:hover,
.career-contact-btn:focus,
.leadership-contact-btn:hover,
.leadership-contact-btn:focus,
.custom-contact-btn:hover,
.custom-contact-btn:focus,
.btn:hover,
.btn:focus:not(:focus-visible),
button:hover,
button:focus:not(:focus-visible),
a.btn:hover,
a.btn:focus:not(:focus-visible),
a[class*="btn"]:hover,
a[class*="btn"]:focus:not(:focus-visible) {
    text-decoration: none !important;
    outline: none !important;
    border: none !important;
}

.btn:focus-visible,
button:focus-visible,
a.btn:focus-visible,
a[class*="btn"]:focus-visible {
    outline: 2px solid #1760bb;
    outline-offset: 2px;
    border-radius: 4px;
}

.page-contact-btn:hover,
.page-contact-btn:focus:not(:focus-visible),
.privacy-contact-btn:hover,
.privacy-contact-btn:focus:not(:focus-visible),
.about-contact-btn:hover,
.about-contact-btn:focus:not(:focus-visible),
.contact-contact-btn:hover,
.contact-contact-btn:focus:not(:focus-visible),
.terms-contact-btn:hover,
.terms-contact-btn:focus:not(:focus-visible),
.refund-contact-btn:hover,
.refund-contact-btn:focus:not(:focus-visible),
.disclaimer-contact-btn:hover,
.disclaimer-contact-btn:focus:not(:focus-visible),
.cookie-contact-btn:hover,
.cookie-contact-btn:focus:not(:focus-visible),
.career-contact-btn:hover,
.career-contact-btn:focus:not(:focus-visible),
.leadership-contact-btn:hover,
.leadership-contact-btn:focus:not(:focus-visible),
.custom-contact-btn:hover,
.custom-contact-btn:focus:not(:focus-visible) {
    background: linear-gradient(135deg, #2d7df7 0%, #155ca6 100%);
    color: #fff !important;
    box-shadow: 0 6px 30px rgba(23, 96, 187, 0.4);
    transform: translateY(-2px);
    text-decoration: none !important;
    outline: none !important;
    border: none !important;
}

.page-contact-btn:focus-visible,
.privacy-contact-btn:focus-visible,
.about-contact-btn:focus-visible,
.contact-contact-btn:focus-visible,
.terms-contact-btn:focus-visible,
.refund-contact-btn:focus-visible,
.disclaimer-contact-btn:focus-visible,
.cookie-contact-btn:focus-visible,
.career-contact-btn:focus-visible,
.leadership-contact-btn:focus-visible,
.custom-contact-btn:focus-visible {
    outline: 2px solid #1760bb;
    outline-offset: 2px;
    border-radius: 4px;
}

.page-contact-btn span,
.privacy-contact-btn span,
.about-contact-btn span,
.contact-contact-btn span,
.terms-contact-btn span,
.refund-contact-btn span,
.disclaimer-contact-btn span,
.cookie-contact-btn span,
.career-contact-btn span,
.leadership-contact-btn span,
.custom-contact-btn span {
    position: relative;
    z-index: 1;
}

/* Contact Page Specific Styles */
.contact-details-list {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
}

.contact-details-list:hover {
    transform: translateX(4px);
}

.contact-details-list span,
.contact-details-list a {
    font-size: 1.05rem;
    color: #495057;
    text-decoration: none;
    line-height: 1.6;
}

.contact-details-list a:hover {
    color: #1760bb;
}

.contact-details-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e3edfa 0%, #f2f7fc 100%);
    color: #1760bb;
    border-radius: 12px;
    font-size: 1.4rem;
    margin-right: 1rem;
    box-shadow: 0 4px 12px rgba(23, 96, 187, 0.15);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-details-list:hover .contact-details-icon {
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    color: #ffffff;
    transform: scale(1.1);
}

.contact-social {
    display: flex;
    gap: 0.75rem;
}

.contact-social a {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.4rem;
    background: linear-gradient(135deg, #f8fbff 0%, #e3edfa 100%);
    border: 1px solid #e3edfa;
}

.contact-social a:hover {
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(23, 96, 187, 0.3);
}

.contact-hr {
    opacity: 0.3;
    margin: 2rem 0;
    border: none;
    border-top: 1.5px dashed #b1cbe6;
}

.contact-label {
    font-weight: 700;
    color: #1760bb;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

/* Form Styles */
.form-control,
.form-select {
    border-radius: 12px;
    box-shadow: none !important;
    border: 1.5px solid #e0e0e0;
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border: 1.5px solid #1760bb;
    background-color: #f8fbff;
    box-shadow: 0 0 0 0.2rem rgba(23, 96, 187, 0.15) !important;
    outline: none;
}

.form-control:hover,
.form-select:hover {
    border-color: #c0c0c0;
}

label.form-label {
    font-weight: 600 !important;
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Map Container */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(23, 96, 187, 0.12);
    border: 1.5px solid #e3edfa;
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 15px 50px rgba(23, 96, 187, 0.15);
    transform: translateY(-2px);
}

/* Career Detail Specific Styles */
.career-detail-wrapper .career-hero-bg {
    min-height: 320px;
    padding: 3rem 0;
}

.career-detail-wrapper .career-hero-title {
    font-size: 2.75rem;
    text-align: center;
}

.career-detail-wrapper .career-lead {
    font-size: 1.2rem;
    text-align: center;
}

.info-card {
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    border: 1px solid #e3edfa;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    transition: width 0.3s ease;
}

.info-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(23, 96, 187, 0.1);
    border-color: #1760bb;
}

.info-card:hover::before {
    width: 6px;
}

.info-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #5e7ba7;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    text-align: left;
}

.info-value {
    font-size: 1.15rem;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
}

.career-date {
    color: #5e7ba7;
    font-size: 1rem;
    margin-bottom: 1.6rem;
    font-weight: 500;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    color: #1760bb !important;
    text-decoration: none !important;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    background: rgba(23, 96, 187, 0.05);
}

.back-link:hover {
    background: rgba(23, 96, 187, 0.1);
    transform: translateX(-4px);
    color: #10509e !important;
}

.back-link i {
    transition: transform 0.3s ease;
}

.back-link:hover i {
    transform: translateX(-4px);
}

/* Animations */
.fade-in {
    animation: fadeIn 0.6s ease-in forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .page-hero-title,
    .privacy-hero-title,
    .about-hero-title,
    .contact-hero-title,
    .terms-hero-title,
    .refund-hero-title,
    .disclaimer-hero-title,
    .cookie-hero-title,
    .career-hero-title,
    .leadership-hero-title {
        font-size: 2.5rem;
    }
    .career-detail-wrapper .career-hero-title {
        font-size: 2.25rem;
    }
    .page-content,
    .privacy-policy-content,
    .about-content,
    .contact-content,
    .terms-content,
    .refund-content,
    .disclaimer-content,
    .cookie-content,
    .career-content,
    .leadership-content {
        padding: 2.5rem 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .page-wrapper,
    .privacy-wrapper,
    .about-wrapper,
    .contact-wrapper,
    .terms-wrapper,
    .refund-wrapper,
    .disclaimer-wrapper,
    .cookie-wrapper,
    .career-wrapper,
    .career-detail-wrapper,
    .leadership-wrapper {
        padding-top: 110px; /* Slightly less on tablets */
    }
    
    .page-hero-bg,
    .privacy-hero-bg,
    .about-hero-bg,
    .contact-hero-section-bg,
    .terms-hero-bg,
    .refund-hero-bg,
    .disclaimer-hero-bg,
    .cookie-hero-bg,
    .career-hero-bg,
    .leadership-hero-bg {
        margin-top: -110px; /* Offset the wrapper padding */
        padding-top: 110px; /* Account for fixed header on tablets */
        padding-bottom: 2.5rem;
        min-height: 300px;
    }
    .page-hero-title,
    .privacy-hero-title,
    .about-hero-title,
    .contact-hero-title,
    .terms-hero-title,
    .refund-hero-title,
    .disclaimer-hero-title,
    .cookie-hero-title,
    .career-hero-title,
    .leadership-hero-title {
        font-size: 2.25rem;
    }
    .page-lead,
    .privacy-lead,
    .about-lead,
    .contact-lead,
    .terms-lead,
    .refund-lead,
    .disclaimer-lead,
    .cookie-lead,
    .career-lead,
    .leadership-lead {
        font-size: 1.1rem;
    }
    .page-content,
    .privacy-policy-content,
    .about-content,
    .contact-content,
    .terms-content,
    .refund-content,
    .disclaimer-content,
    .cookie-content,
    .career-content,
    .leadership-content {
        padding: 2rem 2rem;
    }
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .page-wrapper,
    .privacy-wrapper,
    .about-wrapper,
    .contact-wrapper,
    .terms-wrapper,
    .refund-wrapper,
    .disclaimer-wrapper,
    .cookie-wrapper,
    .career-wrapper,
    .career-detail-wrapper,
    .leadership-wrapper {
        padding-top: 120px !important; /* Account for mobile header (mini-header ~32-50px + navbar ~80px) */
    }
    
    /* Prevent horizontal scrolling on contact page */
    .contact-wrapper {
        overflow-x: hidden !important;
        width: 100%;
        max-width: 100vw;
    }
    
    .page-hero-bg,
    .privacy-hero-bg,
    .about-hero-bg,
    .contact-hero-section-bg,
    .terms-hero-bg,
    .refund-hero-bg,
    .disclaimer-hero-bg,
    .cookie-hero-bg,
    .career-hero-bg,
    .leadership-hero-bg {
        margin-top: -120px; /* Offset the wrapper padding */
        padding-top: 120px; /* Account for fixed header on mobile */
        padding-bottom: 2rem;
        min-height: 260px;
        border-radius: 0 0 2rem 2rem;
    }
    
    /* Fix contact hero section overflow */
    .contact-hero-section-bg {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow-x: hidden;
    }
    
    .contact-hero-section-bg .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        max-width: 100% !important;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Fix contact section rows and columns */
    .contact-section-wrapper .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100%;
    }
    
    .contact-section-wrapper .row > [class*="col-"] {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
        max-width: 100%;
    }
    .career-detail-wrapper .career-hero-bg {
        margin-top: -120px !important; /* Offset the wrapper padding */
        padding-top: 120px !important; /* Account for fixed header on mobile */
        min-height: 240px;
        border-radius: 0 0 2rem 2rem;
        padding-bottom: 2rem;
    }
    .career-detail-wrapper .career-hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    .career-detail-wrapper .career-section-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    .info-card {
        padding: 1.25rem 1.5rem;
    }
    .page-container,
    .privacy-policy-container,
    .about-container,
    .contact-container,
    .terms-container,
    .refund-container,
    .disclaimer-container,
    .cookie-container,
    .career-container,
    .leadership-container {
        margin-top: -60px;
        padding: 0 1rem;
    }
    .page-hero-title,
    .privacy-hero-title,
    .about-hero-title,
    .contact-hero-title,
    .terms-hero-title,
    .refund-hero-title,
    .disclaimer-hero-title,
    .cookie-hero-title,
    .career-hero-title,
    .leadership-hero-title {
        font-size: 1.85rem;
        margin-bottom: 1rem;
    }
    .page-lead,
    .privacy-lead,
    .about-lead,
    .contact-lead,
    .terms-lead,
    .refund-lead,
    .disclaimer-lead,
    .cookie-lead,
    .career-lead,
    .leadership-lead {
        font-size: 1rem;
    }
    .page-content,
    .privacy-policy-content,
    .about-content,
    .contact-content,
    .terms-content,
    .refund-content,
    .disclaimer-content,
    .cookie-content,
    .career-content,
    .leadership-content {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    .page-section-title,
    .privacy-section-title,
    .about-section-title,
    .contact-section-title,
    .terms-section-title,
    .refund-section-title,
    .disclaimer-section-title,
    .cookie-section-title,
    .career-section-title,
    .leadership-section-title {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .page-hero-title,
    .privacy-hero-title,
    .about-hero-title,
    .contact-hero-title,
    .terms-hero-title,
    .refund-hero-title,
    .disclaimer-hero-title,
    .cookie-hero-title,
    .career-hero-title,
    .leadership-hero-title {
        font-size: 1.6rem;
    }
    .page-lead,
    .privacy-lead,
    .about-lead,
    .contact-lead,
    .terms-lead,
    .refund-lead,
    .disclaimer-lead,
    .cookie-lead,
    .career-lead,
    .leadership-lead {
        font-size: 0.95rem;
    }
    .page-content,
    .privacy-policy-content,
    .about-content,
    .contact-content,
    .terms-content,
    .refund-content,
    .disclaimer-content,
    .cookie-content,
    .career-content,
    .leadership-content {
        padding: 1.5rem 1.25rem;
    }
    .page-section-title,
    .privacy-section-title,
    .about-section-title,
    .contact-section-title,
    .terms-section-title,
    .refund-section-title,
    .disclaimer-section-title,
    .cookie-section-title,
    .career-section-title,
    .leadership-section-title {
        font-size: 1.2rem;
    }
    .page-content li,
    .privacy-policy-content li,
    .about-content li,
    .contact-content li,
    .terms-content li,
    .refund-content li,
    .disclaimer-content li,
    .cookie-content li,
    .career-content li,
    .leadership-content li {
        font-size: 0.95rem;
        padding-left: 1.75rem;
    }
    .page-contact-btn,
    .privacy-contact-btn,
    .about-contact-btn,
    .contact-contact-btn,
    .terms-contact-btn,
    .refund-contact-btn,
    .disclaimer-contact-btn,
    .cookie-contact-btn,
    .career-contact-btn,
    .leadership-contact-btn,
    .custom-contact-btn {
        font-size: 1rem;
        padding: 0.875rem 2rem;
        width: 100%;
    }
    .page-intro,
    .about-intro {
        padding: 1.5rem;
    }
}

/* ============================================
   CAREER FORM SPECIFIC STYLES
   ============================================ */
.career-form-wrapper {
    padding: 3rem 0;
}

.career-form-card {
    max-width: 1200px;
    margin: 0 auto;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.form-header {
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.form-header h4 {
    margin: 0;
    font-weight: 600;
    font-size: 1.75rem;
    letter-spacing: 0.5px;
}

.job-info-section {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    margin-top: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.job-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.4));
}

.job-title {
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
    text-align: center;
    letter-spacing: 0.4px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    line-height: 1.3;
}

.job-title i {
    font-size: 1.65rem;
    margin-right: 0.5rem;
    opacity: 0.95;
}

.job-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

.job-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    background: rgba(255, 255, 255, 0.12);
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 220px;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.job-detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.job-detail-item:hover::before {
    left: 100%;
}

.job-detail-item:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.job-detail-item i {
    font-size: 1.5rem;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.98);
    min-width: 24px;
    text-align: center;
    transition: transform 0.3s ease;
}

.job-detail-item:hover i {
    transform: scale(1.1);
}

.job-detail-item > div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.job-detail-label {
    display: block;
    font-size: 0.7rem;
    opacity: 0.9;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    line-height: 1.2;
}

.job-detail-value {
    display: block;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.form-body {
    padding: 2.5rem;
}

.section-title {
    color: #155ca6;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e9ecef;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
}

.drop-area {
    border: 2px dashed #1760bb;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.drop-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(23, 96, 187, 0.1), transparent);
    transition: left 0.5s ease;
}

.drop-area:hover::before {
    left: 100%;
}

.drop-area:hover {
    border-color: #10509e;
    background: linear-gradient(135deg, #f2f7fc 0%, #f8fbff 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(23, 96, 187, 0.2);
}

.drop-area.drag-over {
    border-color: #10509e;
    background: linear-gradient(135deg, #e3edfa 0%, #f2f7fc 100%);
    transform: scale(1.02);
}

.experience-entry,
.education-entry {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.experience-entry:hover,
.education-entry:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: #1760bb;
}

.file-feedback {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.career-form-wrapper .text-primary {
    color: #1760bb !important;
}

/* ============================================
   CAREER SPECIFIC STYLES (Additional)
   ============================================ */
.career-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border: 1.5px solid #e3edfa;
    border-radius: 20px;
    padding: 2rem 2.5rem;
    margin-bottom: 1.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.career-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    transition: width 0.4s ease;
}

.career-card:hover {
    transform: translateY(-6px) translateX(4px);
    box-shadow: 0 12px 40px rgba(23, 96, 187, 0.15);
    border-color: #1760bb;
}

.career-card:hover::before {
    width: 6px;
}

.career-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.career-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #5e7ba7;
}

.career-meta-item i {
    font-size: 1.1rem;
    color: #1760bb;
}

.career-meta-item strong {
    color: #2c3e50;
    font-weight: 600;
    margin-right: 0.25rem;
}

/* ============================================
   LEADERSHIP SPECIFIC STYLES
   ============================================ */
.leadership-hero {
    color: #fff;
    font-family: 'Inter', Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    border-radius: 0 0 3rem 3rem;
    min-height: 400px;
    box-shadow: 0 10px 40px rgba(23, 96, 187, 0.2);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    margin-top: -120px; /* Offset the wrapper padding */
    padding-top: 80px; /* Reduced padding from top */
    padding-bottom: 3.5rem;
}

.leadership-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.leadership-section-label {
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.leadership-main-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.leadership-container-bg {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(23, 96, 187, 0.12);
    padding: 3rem 3.5rem;
    margin: -90px auto 2rem auto;
    max-width: 1200px;
    position: relative;
    z-index: 10;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leadership-container-bg:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(23, 96, 187, 0.15);
}

.leadership-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    justify-items: center;
    padding: 1rem 0;
}

.leadership-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(23, 96, 187, 0.1);
    padding: 0;
    text-align: center;
    width: 100%;
    max-width: 300px;
    border: 1.5px solid #e3edfa;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.leadership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.leadership-card:hover::before {
    transform: scaleX(1);
}

.leadership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(23, 96, 187, 0.2);
    border-color: #1760bb;
}

.leadership-photo {
    width: 100%;
    height: 280px;
    border-radius: 16px 16px 0 0;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: none;
    box-shadow: 0 4px 20px rgba(23, 96, 187, 0.1);
    background: linear-gradient(135deg, #e3edfa 0%, #f2f7fc 100%);
    display: block;
    transition: transform 0.4s ease;
}

.leadership-card:hover .leadership-photo {
    transform: scale(1.05);
}

.leadership-member-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.leadership-member-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1;
}

.leadership-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    letter-spacing: 0;
    line-height: 1.3;
}

.leadership-role {
    font-size: 0.85rem;
    color: #5e7ba7;
    font-weight: 600;
    margin-bottom: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.leadership-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    border-radius: 12px;
    width: 42px;
    height: 42px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
    text-decoration: none;
    flex-shrink: 0;
}

.leadership-linkedin:hover {
    background: linear-gradient(135deg, #005885 0%, #0077b5 100%);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}

.leadership-linkedin-icon {
    width: 22px;
    height: 22px;
    fill: #fff;
}

/* ============================================
   CONTACT US SPECIFIC STYLES (Additional)
   ============================================ */
.contact-section-wrapper {
    margin-top: -90px;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-card {
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(23, 96, 187, 0.12);
    border-radius: 24px;
    padding: 2.5rem 3rem;
    border: 1.5px solid #e3edfa;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    transition: width 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 50px rgba(23, 96, 187, 0.15);
    border-color: #1760bb;
}

.contact-card:hover::before {
    width: 6px;
}

.contact-office-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1760bb;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

/* ============================================
   RESPONSIVE STYLES FOR NEW COMPONENTS
   ============================================ */
@media (max-width: 992px) {
    .job-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .job-details {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .job-title {
        font-size: 1.5rem;
        margin-bottom: 1.75rem;
    }
    
    .job-title i {
        font-size: 1.4rem;
    }
    
    .job-info-section {
        padding: 2rem 1.75rem;
        margin-top: 2rem;
        border-radius: 16px;
    }
    
    .job-detail-item {
        max-width: 100%;
        padding: 1.1rem 1.4rem;
    }
    
    .form-body {
        padding: 1.5rem;
    }
    
    .career-form-wrapper {
        padding: 1.5rem 0;
    }
    
    .career-card {
        padding: 1.75rem 2rem;
    }
    
    .leadership-hero {
        min-height: 300px;
        border-radius: 0 0 2rem 2rem;
        margin-top: -120px; /* Offset the wrapper padding (120px) */
        padding-top: 120px; /* Account for fixed header on mobile */
        padding-bottom: 2.5rem;
    }
    
    .leadership-hero-content {
        max-width: 100%;
        padding: 0 1.5rem;
    }
    
    .leadership-main-title {
        font-size: 2.25rem;
    }
    
    .leadership-container-bg {
        margin-top: -40px; /* Reduced negative margin to prevent overlap */
        padding: 2rem 2rem;
    }
    
    .leadership-team-grid {
        gap: 1.5rem;
    }
    
    .contact-section-wrapper {
        margin-top: -70px;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        max-width: 100% !important;
        width: 100% !important;
        overflow-x: hidden;
    }
    
    .contact-card {
        padding: 1.75rem 1.5rem;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Fix map container overflow */
    .map-container {
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }
    
    .map-container iframe {
        max-width: 100%;
        width: 100% !important;
        box-sizing: border-box;
    }
    
    /* Fix map section container */
    .contact-wrapper section.container {
        max-width: 100% !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 576px) {
    .job-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .job-title i {
        font-size: 1.25rem;
    }
    
    .job-info-section {
        padding: 1.75rem 1.5rem;
        margin-top: 1.75rem;
        border-radius: 14px;
    }
    
    .job-detail-item {
        padding: 1rem 1.25rem;
        border-radius: 12px;
    }
    
    .job-detail-item i {
        font-size: 1.35rem;
    }
    
    .job-detail-value {
        font-size: 1.05rem;
    }
    
    .job-detail-label {
        font-size: 0.65rem;
    }
    
    .career-card {
        padding: 1.25rem 1.5rem;
    }
    
    .career-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .leadership-hero {
        border-radius: 0 0 2rem 2rem;
        margin-top: -120px; /* Offset the wrapper padding (120px) */
        padding-top: 120px; /* Account for fixed header on mobile */
        padding-bottom: 2.5rem; /* Increased bottom padding for better spacing */
        min-height: 280px; /* Increased min-height to accommodate title and subtitle */
    }
    
    .leadership-main-title {
        font-size: 1.85rem;
    }
    
    .leadership-section-label {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .leadership-hero-content {
        padding: 0 1rem;
    }
    
    .leadership-container-bg {
        margin-top: -30px; /* Reduced negative margin to prevent overlap on smaller mobile */
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .leadership-team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .leadership-card {
        max-width: 100%;
    }
    
    .leadership-photo {
        height: 320px;
    }
    
    .contact-section-wrapper {
        margin-top: -60px;
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
        max-width: 100% !important;
        width: 100% !important;
        overflow-x: hidden;
    }
    
    .contact-card {
        padding: 1.25rem 1rem;
        border-radius: 20px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contact-details-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.2rem;
    }
    
    /* Fix map container on small screens */
    .map-container {
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }
    
    .map-container iframe {
        max-width: 100%;
        width: 100% !important;
        border-radius: 16px;
    }
    
    /* Ensure container doesn't overflow */
    .contact-section-wrapper .container {
        max-width: 100% !important;
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Fix form elements overflow */
    .contact-card .form-control,
    .contact-card .form-control-lg {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contact-card .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .contact-card .row > [class*="col-"] {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
        max-width: 100%;
    }
}

@media (max-width: 1199.98px) {
    .leadership-main-title {
        font-size: 2.5rem;
    }
    
    .leadership-container-bg {
        padding: 2.5rem 2.5rem;
    }
    
    .contact-card {
        padding: 2rem 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .leadership-hero {
        margin-top: -120px; /* Offset the wrapper padding (120px) */
        padding-top: 120px; /* Account for fixed header on mobile */
        padding-bottom: 2.5rem; /* Increased bottom padding for better spacing */
        min-height: 280px; /* Increased min-height to accommodate title and subtitle */
    }
    
    .leadership-main-title {
        font-size: 1.6rem;
    }
    
    .leadership-hero-content {
        padding: 0 1rem;
    }
    
    .leadership-container-bg {
        margin-top: -20px; /* Reduced negative margin to prevent overlap on very small screens */
        padding: 1.5rem 1.25rem;
    }
    
    .leadership-photo {
        height: 280px;
    }
    
    .leadership-name {
        font-size: 1.05rem;
    }
    
    .leadership-role {
        font-size: 0.8rem;
    }
    
    .contact-card {
        padding: 1.25rem 1rem;
        border-radius: 16px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Additional fixes for very small screens */
    .contact-section-wrapper {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    
    .contact-section-wrapper .container {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    
    .map-container {
        padding: 0;
        margin-left: 0;
        margin-right: 0;
    }
}
