

/* Responsive adjustments for different screen sizes */
@media (max-width: 768px) {
    .section {
        margin-top: 40px; /* Account for fixed header on mobile */
    }
}

@media (max-width: 480px) {
    .section {
        margin-top: 40px; /* Ensure adequate spacing on small screens */
    }
}

/* HD Screens */
@media (min-width: 1080px) and (max-width: 1439px) {
    .section {
        margin-top: 5rem;
    }
}

/* FHD and Large Screens (1920px - 2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
    .section {
        margin-top: 5rem;
    }
}

/* QHD and Ultra-Large Screens (2560px and above) */
@media (min-width: 2560px) {
    .section {
        margin-top: 5rem;
    }
}


/* Hero Section */
.contacts-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contacts-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.contacts-hero-content {
    position: relative;
    z-index: 2;
}

.contacts-hero h1 {
    color: var(--text-white);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contacts-hero h1 svg {
    color: rgba(255, 255, 255, 0.9);
}

.contacts-hero p {
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 0;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-info {
    align-items: normal;
}

/* Main Content */
.contacts-content {
    padding: 80px 0;
    background: #fafafa;
}

.contact-section {
    background: white;
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.contact-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.contact-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-section h2 svg {
    color: var(--primary-color);
}

.contact-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 40px 0 30px 0;
    padding-left: 20px;
    border-left: 4px solid var(--secondary-color);
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), transparent);
    margin: 50px 0 40px 0;
    border-radius: 1px;
    opacity: 0.3;
}

/* Contact Rows */
.contact-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-row:hover {
    background: rgba(var(--primary-rgb), 0.02);
    padding-left: 20px;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 12px;
}

.contact-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-dark);
    min-width: 140px;
    font-size: 1.1rem;
}

.contact-label svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-value {
    flex: 1;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.contact-value a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.contact-value a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.contact-value a:hover::after {
    width: 100%;
}

.contact-value a:hover {
    color: var(--secondary-color);
}

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

.staff-person {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05) 0%, rgba(var(--secondary-rgb), 0.05) 100%);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.staff-person::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.staff-person:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.staff-title {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.staff-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.staff-contact a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.staff-contact a:hover {
    color: var(--primary-color);
}

/* Coaching Staff */
.coaching-staff {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.coach-item {
    background: rgba(var(--secondary-rgb), 0.03);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.coach-item:hover {
    background: rgba(var(--secondary-rgb), 0.08);
    transform: translateX(5px);
}

.coach-title {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.coach-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Media Content */
.media-content {
    background: rgba(var(--primary-rgb), 0.02);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.media-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 25px;
}

a:hover {
    color: var(--secondary-color);
}

.media-content a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.media-content a:hover {
    color: var(--secondary-color);
}

.press-contact {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.press-title {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.press-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.press-phone a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.press-phone a:hover {
    color: var(--primary-color);
}

.thanks-note {
    font-style: italic;
    color: var(--text-light);
    text-align: center;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* Banking Section */
.banking-section {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.02) 0%, rgba(var(--secondary-rgb), 0.02) 100%);
    border: 2px solid rgba(var(--primary-rgb), 0.1);
}

.banking-section::before {
    background: linear-gradient(180deg, #FFD700, #FFA500);
}

.bank-org {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.bank-details {
    background: white;
    padding: 30px;
    border-radius: 16px;
    margin: 25px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.bank-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.bank-row:last-child {
    border-bottom: none;
}

.bank-row:hover {
    background: rgba(var(--primary-rgb), 0.02);
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 8px;
}

.bank-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.bank-value {
    font-family: 'Courier New', monospace;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 1.1rem;
    text-align: right;
}

.bank-note {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    text-align: center;
    margin-top: 25px;
}

.bank-note strong {
    color: #e65100;
}

/* Updated styles for new components */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    opacity: 0.9;
    font-weight: 400;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Header */
.section {
    padding: 5rem 0;
    background: var(--bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Sequential Layout */
.contact-sequential {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Contact Card Component */
.contact-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(26, 63, 103, 0.08);
    border: 1px solid rgba(26, 63, 103, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    width: 100%;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(26, 63, 103, 0.15);
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(26, 63, 103, 0.05);
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.03) 0%, rgba(var(--secondary-rgb), 0.03) 100%);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.card-body {
    padding: 1.5rem;
}

/* Contact Info Items */
.contact-info {
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-icon {
    margin-right: 1rem;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.contact-details h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: var(--text-dark);
}

.contact-details p {
    margin: 0;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.5;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--secondary-color);
}

/* Section Divider */
.section-divider {
    height: 0;
    background: none;
    margin: 0;
    border-radius: 0;
    opacity: 0;
    display: none;
}

/* Contact Subtitle */
.contact-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 1.5rem 0 1rem 0;
    padding-left: 0;
    border-left: none;
}

/* Leadership Sequential Layout */
.leadership-sequential {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.leadership-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.leadership-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.leadership-content h5 {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0rem;
}

.profile-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(var(--primary-rgb), 0.2);
}

.profile-info {
    flex: 1;
}

.leadership-content h5 {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leadership-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.1rem 0;
}

.leadership-content p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.leadership-content a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.leadership-content a:hover {
    color: var(--primary-color);
}

/* Coaching Sequential Layout */
.coaching-sequential {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.media-sequential {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.coaching-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.media-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.media-content h5 {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.media-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.1rem 0;
}

.media-content p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.media-content a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.media-content a:hover {
    color: var(--primary-color);
}

.coaching-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.coaching-content h5 {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coaching-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.coaching-content p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.coaching-content a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.coaching-content a:hover {
    color: var(--primary-color);
}

/* Media Contact Person */
.media-person-card {
    background: white;
    padding: 1.25rem;
    border-radius: 8px;
    margin: 1.25rem 0;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.media-person-content h5 {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.media-person-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.media-person-content p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.media-person-content a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.media-person-content a:hover {
    color: var(--primary-color);
}

/* Media Content */
.media-content {
    background: rgba(var(--primary-rgb), 0.02);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.media-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 0rem;
}

.media-content a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.media-content a:hover {
    color: var(--secondary-color);
}

.media-contact {
    background: white;
    padding: 1.25rem;
    border-radius: 8px;
    margin: 1.25rem 0;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.thanks-note {
    font-style: italic;
    color: var(--text-light);
    text-align: center;
    font-size: 1rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(var(--primary-rgb), 0.05);
    border-radius: 8px;
}

/* Banking Section */
.banking-card {
    border: 2px solid rgba(var(--primary-rgb), 0.1);
}

.bank-org {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.bank-details {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.25rem 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.bank-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.bank-item:last-child {
    border-bottom: none;
}

.bank-item:hover {
    background: rgba(var(--primary-rgb), 0.02);
    margin: 0 -0.75rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    border-radius: 6px;
}

.bank-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.bank-value {
    font-family: 'Courier New', monospace;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 1rem;
    text-align: right;
    word-break: break-all;
}

.bank-note {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-dark);
    text-align: center;
    margin-top: 1.5rem;
}

.bank-note strong {
    color: #e65100;
}

/* HD Screens */
@media (min-width: 1080px) and (max-width: 1439px) {
    .container {
        max-width: 1000px;
    }
    .page-header {
        padding: 11rem 0 5rem 0;
    }
    
    .page-title {
        font-size: 3.2rem;
    }
    
    .page-subtitle {
        font-size: 1.25rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .contact-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2.1rem;
        margin-bottom: 2rem;
    }
    
    .contact-grid {
        gap: 2rem;
    }
    
    .contact-staff-grid {
        gap: 2rem;
    }
    
    .staff-card {
        padding: 2rem;
    }
    
    .staff-info h5 {
        font-size: 1rem;
    }
    
    .staff-info h4 {
        font-size: 1.3rem;
    }
    
    .media-content {
        padding: 2rem;
    }
    
    .bank-details {
        padding: 2rem;
    }
    
    /* Original styles for fallback */
    .contacts-hero {
        padding: 11rem 0 5rem 0;
    }
    
    .contacts-hero h1 {
        font-size: 3.2rem;
    }
    
    .contacts-hero p {
        font-size: 1.25rem;
    }
    
    .contacts-content {
        padding: 70px 0;
    }
    
    .contact-section {
        padding: 45px;
        margin-bottom: 35px;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-section h2 {
        font-size: 2.1rem;
        margin-bottom: 35px;
    }
    
    .contact-section h3 {
        font-size: 1.6rem;
        margin: 35px 0 25px 0;
        padding-left: 18px;
    }
    
    .section-divider {
        margin: 40px 0 35px 0;
    }
    
    .contact-row {
        margin-bottom: 28px;
        padding: 18px 0;
    }
    
    .contact-label {
        min-width: 130px;
        font-size: 1.05rem;
    }
    
    .contact-value {
        font-size: 1.05rem;
    }
    
    .staff-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 25px;
    }
    
    .staff-person {
        padding: 28px;
    }
    
    .staff-title {
        font-size: 0.9rem;
    }
    
    .staff-name {
        font-size: 1.25rem;
    }
    
    .staff-contact a {
        font-size: 0.95rem;
    }
    
    .coaching-staff {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }
    
    .coach-item {
        padding: 22px;
    }
    
    .coach-title {
        font-size: 0.95rem;
    }
    
    .coach-name {
        font-size: 1.3rem;
    }
    
    .media-content {
        padding: 8px;
    }
    
    .media-content p {
        font-size: 1.05rem;
    }
    
    .press-contact {
        padding: 25px;
    }
    
    .press-name {
        font-size: 1.3rem;
    }
    
    .bank-org {
        font-size: 1.35rem;
        padding: 22px;
    }
    
    .bank-details {
        padding: 28px;
    }
    
    .bank-label,
    .bank-value {
        font-size: 1.05rem;
    }
    
    .bank-note {
        padding: 25px;
        font-size: 1.05rem;
    }
}

/* FHD and Large Screens (1920px - 2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
    .container {
        max-width: 1800px;
    }
    .contacts-hero {
        padding: 12rem 0 5rem 0;
    }
    
    .contacts-hero h1 {
        font-size: 4.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contacts-hero p {
        font-size: 1.6rem;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .contacts-content {
        padding: 120px 0;
    }
    
    .contact-section {
        padding: 70px 80px;
        margin-bottom: 60px;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 24px;
    }
    
    .contact-section h2 {
        font-size: 2.8rem;
        margin-bottom: 50px;
        gap: 20px;
    }
    
    .contact-section h2 svg {
        width: 32px;
        height: 32px;
    }
    
    .contact-section h3 {
        font-size: 2.2rem;
        margin: 50px 0 35px 0;
        padding-left: 25px;
        border-left-width: 5px;
    }
    
    .section-divider {
        margin: 60px 0 50px 0;
        height: 3px;
    }
    
    
    .contact-label {
        min-width: 180px;
        font-size: 1.3rem;
        gap: 15px;
    }
    
    .contact-label svg {
        width: 24px;
        height: 24px;
    }
    
    .contact-value {
        font-size: 1.3rem;
    }
    
    .staff-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 35px;
        margin-top: 30px;
    }
    
    .staff-person {
        padding: 40px;
        border-radius: 20px;
    }
    
    .staff-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .staff-name {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .staff-contact a {
        font-size: 1.2rem;
    }
    
    .coaching-staff {
        grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
        gap: 35px;
        margin-top: 30px;
    }
    
    .coach-item {
        padding: 35px;
        border-radius: 16px;
    }
    
    .coach-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .coach-name {
        font-size: 1.7rem;
    }
    
    .media-content {
        padding: 40px;
        border-radius: 20px;
    }
    
    .media-content p {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }
    
    .press-contact {
        padding: 35px;
        margin: 35px 0;
        border-radius: 16px;
    }
    
    .press-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .press-name {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }
    
    .press-phone a {
        font-size: 1.2rem;
    }
    
    .thanks-note {
        font-size: 1.3rem;
        margin-top: 25px;
    }
    
    .bank-org {
        font-size: 1.7rem;
        margin-bottom: 40px;
        padding: 30px;
        border-radius: 16px;
    }
    
    .bank-details {
        padding: 40px;
        border-radius: 20px;
        margin: 35px 0;
    }
    
    .bank-row {
        padding: 20px 0;
    }
    
    .bank-label {
        font-size: 1.3rem;
    }
    
    .bank-value {
        font-size: 1.3rem;
    }
    
    .bank-note {
        padding: 35px;
        font-size: 1.3rem;
        margin-top: 35px;
        border-radius: 16px;
    }
    
    /* New component responsive styles */
    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    }
    
    .contact-card {
        padding: 2.5rem;
    }
    
    .card-header {
        padding: 1.75rem;
    }
    
    .card-body {
        padding: 2rem;
    }
    
    .contact-staff-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }
    
    .staff-card {
        padding: 2rem;
    }
    
    .media-content {
        padding: 2rem;
    }
    
    .bank-details {
        padding: 2rem;
    }
}

@media (min-width: 1440px) and (max-width: 1919px) {
    .container {
        max-width: 1600px;
    }

    .contacts-hero {
        padding: 100px 0 70px 0;
    }
    
    .contacts-hero h1 {
        font-size: 4rem;
    }
    
    .contacts-hero p {
        font-size: 1.4rem;
    }
    
    .contacts-content {
        padding: 100px 0;
    }
    
    .contact-section {
        padding: 60px;
        margin-bottom: 50px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-section h2 {
        font-size: 2.5rem;
        margin-bottom: 45px;
    }
    
    .contact-section h3 {
        font-size: 2rem;
        margin: 45px 0 30px 0;
        padding-left: 22px;
    }
    
    .section-divider {
        margin: 55px 0 45px 0;
    }
    
    .contact-row {
        margin-bottom: 35px;
        padding: 22px 0;
    }
    
    .contact-label {
        min-width: 160px;
        font-size: 1.2rem;
    }
    
    .contact-value {
        font-size: 1.2rem;
    }
    
    .staff-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
    
    .staff-person {
        padding: 35px;
    }
    
    .staff-name {
        font-size: 1.4rem;
    }
    
    .coaching-staff {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 30px;
    }
    
    .coach-item {
        padding: 30px;
    }
    
    .coach-name {
        font-size: 1.5rem;
    }
    
    .media-content {
        padding: 35px;
    }
    
    .media-content p {
        font-size: 1.2rem;
    }
    
    .press-contact {
        padding: 30px;
    }
    
    .press-name {
        font-size: 1.5rem;
    }
    
    .bank-org {
        font-size: 1.5rem;
        padding: 25px;
    }
    
    .bank-details {
        padding: 35px;
    }
    
    .bank-label,
    .bank-value {
        font-size: 1.2rem;
    }
    
    .bank-note {
        padding: 30px;
        font-size: 1.2rem;
    }
    
    /* New component responsive styles */
    .contact-sequential {
        gap: 2rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .contact-staff-sequential {
        gap: 1.5rem;
    }
    
    .staff-card {
        padding: 1.75rem;
    }
    
    .media-content {
        padding: 1.75rem;
    }
    
    .bank-details {
        padding: 1.75rem;
    }
    
    /* Original styles for fallback */
    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }
    
    .contact-staff-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contacts-hero {
        padding: 60px 0 40px 0;
    }
    
    .contacts-hero h1 {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contacts-hero p {
        font-size: 1.1rem;
    }
    
    .contacts-content {
        padding: 40px 0;
    }
    
    .contact-section {
        padding: 30px 20px;
        margin-bottom: 25px;
        border-radius: 16px;
    }
    
    .contact-section h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .contact-section h3 {
        font-size: 1.4rem;
        margin: 30px 0 20px 0;
        padding-left: 15px;
        border-left-width: 3px;
    }
    
    .section-divider {
        margin: 35px 0 30px 0;
        height: 1px;
    }
    
    .contact-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px 0;
    }
    
    .contact-label {
        min-width: auto;
        font-size: 1rem;
    }
    
    .contact-value {
        font-size: 1rem;
        margin-left: 32px;
    }
    
    .staff-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .staff-person {
        padding: 20px;
    }
    
    .coaching-staff {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .coach-item {
        padding: 20px;
    }
    
    .media-content {
        padding: 20px;
    }
    
    .bank-details {
        padding: 20px;
    }
    
    .bank-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .bank-value {
        text-align: left;
        font-size: 1rem;
        word-break: break-all;
    }
    
    .bank-note {
        padding: 20px;
        font-size: 1rem;
    }
    
    /* New component responsive styles */
    .contact-sequential {
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 16px;
    }
    
    .card-header {
        padding: 1.25rem;
    }
    
    .card-body {
        padding: 1.25rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.75rem 0;
    }
    
    .contact-details {
        margin-left: 0;
    }
    
    .contact-staff-sequential {
        gap: 1.25rem;
    }
    
    .staff-card {
        padding: 1.25rem;
    }
    
    .media-content {
        padding: 1.25rem;
    }
    
    .bank-details {
        padding: 1.25rem;
    }
    
    .bank-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .bank-value {
        text-align: left;
        font-size: 1rem;
        word-break: break-all;
    }
    
    .bank-note {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
        margin: 1.5rem 0 1rem 0;
    }
    
    /* Original styles for fallback */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-staff-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    /* New responsive styles for leadership and coaching cards */
    .leadership-sequential {
        gap: 1.5rem;
    }
    
    .leadership-card {
        padding: 1.5rem;
    }
    
    .coaching-sequential {
        gap: 1.5rem;
    }
    
    .coaching-card {
        padding: 1.5rem;
    }
    
    .media-person-card {
        padding: 1.25rem;
        margin: 1.25rem 0;
    }
}
    
@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-card {
        padding: 1rem;
    }
    
    .contact-staff-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .staff-card {
        padding: 1rem;
    }
    
    .staff-info h5 {
        font-size: 0.85rem;
    }
    
    .staff-info h4 {
        font-size: 1.1rem;
    }
    
    .contacts-hero h1 {
        font-size: 2rem;
    }
    
    .contact-section {
        padding: 20px 15px;
    }
    
    .contact-section h2 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .contact-section h3 {
        font-size: 1.2rem;
        margin: 25px 0 15px 0;
        padding-left: 12px;
    }
    
    .section-divider {
        margin: 25px 0 20px 0;
    }
} 

/* QHD and Ultra-Large Screens (2560px and above) */
@media (min-width: 2560px) {
    .container {
        max-width: 1920px;
    }
    .contacts-hero {
        padding: 15rem 0 7rem 0;
    }
    
    .contacts-hero h1 {
        font-size: 5.5rem;
        margin-bottom: 2rem;
    }
    
    .contacts-hero p {
        font-size: 2rem;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .contacts-content {
        padding: 160px 0;
    }
    
    .contact-section {
        padding: 100px 120px;
        margin-bottom: 80px;
        max-width: 1800px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 32px;
    }
    
    .contact-section h2 {
        font-size: 3.5rem;
        margin-bottom: 60px;
        gap: 25px;
    }
    
    .contact-section h2 svg {
        width: 40px;
        height: 40px;
    }
    
    .contact-section h3 {
        font-size: 2.8rem;
        margin: 60px 0 45px 0;
        padding-left: 30px;
        border-left-width: 6px;
    }
    
    .section-divider {
        margin: 80px 0 60px 0;
        height: 4px;
    }
    
    .contact-label {
        min-width: 220px;
        font-size: 1.6rem;
        gap: 20px;
    }
    
    .contact-label svg {
        width: 28px;
        height: 28px;
    }
    
    .contact-value {
        font-size: 1.6rem;
    }
    
    .staff-grid {
        grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
        gap: 45px;
        margin-top: 40px;
    }
    
    .staff-person {
        padding: 50px;
        border-radius: 24px;
    }
    
    .staff-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .staff-name {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .staff-contact a {
        font-size: 1.5rem;
    }
    
    .coaching-staff {
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        gap: 45px;
        margin-top: 40px;
    }
    
    .coach-item {
        padding: 45px;
        border-radius: 20px;
    }
    
    .coach-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .coach-name {
        font-size: 2.1rem;
    }
    
    .media-content {
        padding: 50px;
        border-radius: 24px;
    }
    
    .media-content p {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }
    
    .press-contact {
        padding: 45px;
        margin: 45px 0;
        border-radius: 20px;
    }
    
    .press-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .press-name {
        font-size: 2.1rem;
        margin-bottom: 20px;
    }
    
    .press-phone a {
        font-size: 1.5rem;
    }
    
    .thanks-note {
        font-size: 1.6rem;
        margin-top: 30px;
    }
    
    .bank-org {
        font-size: 2.1rem;
        margin-bottom: 50px;
        padding: 40px;
        border-radius: 20px;
    }
    
    .bank-details {
        padding: 50px;
        border-radius: 24px;
        margin: 45px 0;
    }
    
    .bank-row {
        padding: 25px 0;
    }
    
    .bank-label {
        font-size: 1.6rem;
    }
    
    .bank-value {
        font-size: 1.6rem;
    }
    
    .bank-note {
        padding: 45px;
        font-size: 1.6rem;
        margin-top: 45px;
        border-radius: 20px;
    }
    
    /* New component responsive styles for ultra-large screens */
    .contact-sequential {
        gap: 3rem;
    }
    
    .contact-card {
        padding: 3rem;
        margin-bottom: 4rem;
        max-width: 1800px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 32px;
    }
    
    .card-header {
        padding: 2.5rem;
    }
    
    .card-body {
        padding: 3rem;
    }
    
    .contact-staff-sequential {
        gap: 3rem;
        margin-top: 40px;
    }
    
    .staff-card {
        padding: 2.5rem;
        border-radius: 24px;
    }
    
    .staff-info h5 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .staff-info h4 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .staff-info a {
        font-size: 1.5rem;
    }
    
    .media-content {
        padding: 2.5rem;
        border-radius: 24px;
    }
    
    .media-content p {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }
    
    .media-contact {
        padding: 2.5rem;
        margin: 2.5rem 0;
        border-radius: 20px;
    }
    
    .thanks-note {
        font-size: 1.6rem;
        margin-top: 30px;
    }
    
    .bank-org {
        font-size: 2.1rem;
        margin-bottom: 4rem;
        padding: 2rem;
        border-radius: 20px;
    }
    
    .bank-details {
        padding: 2.5rem;
        border-radius: 24px;
        margin: 2.5rem 0;
    }
    
    .bank-item {
        padding: 25px 0;
    }
    
    .bank-label {
        font-size: 1.6rem;
    }
    
    .bank-value {
        font-size: 1.6rem;
    }
    
    .bank-note {
        padding: 2.5rem;
        font-size: 1.6rem;
        margin-top: 45px;
        border-radius: 20px;
    }
    
    /* Original styles for fallback */
    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
        gap: 3rem;
    }
    
    .contact-staff-grid {
        grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
        gap: 45px;
        margin-top: 40px;
    }
    
    .staff-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .staff-name {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .staff-contact a {
        font-size: 1.5rem;
    }
}

/* New responsive styles for the updated sequential design */
@media (max-width: 768px) {
    .contact-sequential {
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 16px;
    }
    
    .card-header {
        padding: 1.25rem;
    }
    
    .card-body {
        padding: 1.25rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.75rem 0;
    }
    
    .contact-details {
        margin-left: 0;
    }
    
    .contact-staff-sequential {
        gap: 1.25rem;
    }
    
    .staff-card {
        padding: 1.25rem;
    }
    
    /* New responsive styles for leadership and coaching cards */
    .leadership-sequential {
        gap: 1.25rem;
    }
    
    .leadership-card {
        padding: 1.25rem;
    }
    
    .coaching-sequential {
        gap: 1.25rem;
    }
    
    .coaching-card {
        padding: 1.25rem;
    }
    
    .media-person-card {
        padding: 1.25rem;
        margin: 1.25rem 0;
    }
    
    .media-content {
        padding: 1.25rem;
    }
    
    .bank-details {
        padding: 1.25rem;
    }
    
    .bank-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .bank-value {
        text-align: left;
        font-size: 1rem;
        word-break: break-all;
    }
    
    .bank-note {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
        margin: 1.5rem 0 1rem 0;
    }
    
    /* Fix contact item layout on mobile */
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 0.25rem;
        display: flex;
    }
    
    /* Improved mobile styles for profile headers */
    .profile-header {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }
    
    .profile-image {
        width: 50px;
        height: 50px;
    }
    
    .profile-info h5 {
        font-size: 0.85rem;
    }
    
    .profile-info h4 {
        font-size: 1.1rem;
    }
    
    /* Make contact info more readable on mobile */
    .contact-details p {
        font-size: 0.95rem;
        word-break: break-all;
    }
    
    /* Adjust section spacing */
    .section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .profile-header {
        flex-direction: row;
        align-items: flex-start; /* Align to top to match text */
        gap: 0.75rem;
    }
    
    .profile-image {
        width: 45px;
        height: 45px;
    }
    
    .profile-info h5 {
        font-size: 0.8rem;
    }
    
    .profile-info h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .leadership-content p,
    .coaching-content p,
    .media-content p {
        font-size: 0.9rem;
    }
    
    /* Ensure contact details are properly formatted */
    .contact-details {
        width: 100%;
    }
    
    .contact-details h4 {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    /* Improve readability on small screens */
    .contact-card {
        padding: 1.25rem;
    }
    
    .card-header,
    .card-body {
        padding: 1rem;
    }
    
    .leadership-card,
    .coaching-card,
    .media-card {
        padding: 1rem;
    }
    
    /* Ensure proper spacing on small screens */
    .contact-sequential {
        gap: 1.25rem;
    }
    
    .leadership-sequential,
    .coaching-sequential,
    .media-sequential {
        gap: 1rem;
    }
    
    /* Adjust section title for smaller screens */
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    /* Fix contact item layout on small screens */
    .contact-item {
        flex-direction: unset;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 0.25rem;
        display: flex;
    }
    
    /* Improve footer spacing on mobile */
    .page-title {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-card {
        padding: 1rem;
    }
    
    .contact-staff-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .staff-card {
        padding: 1rem;
    }
    
    .staff-info h5 {
        font-size: 0.85rem;
    }
    
    .staff-info h4 {
        font-size: 1.1rem;
    }
    .contacts-hero h1 {
        font-size: 2rem;
    }
    
    .contact-section {
        padding: 20px 15px;
    }
    
    .contact-section h2 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .contact-section h3 {
        font-size: 1.2rem;
        margin: 25px 0 15px 0;
        padding-left: 12px;
    }
    
    .section-divider {
        margin: 25px 0 20px 0;
    }
}

@media (max-width: 480px) {
    .contact-sequential {
        gap: 1rem;
    }
    
    .contact-card {
        padding: 1rem;
    }
    
    .contact-staff-sequential {
        gap: 1rem;
    }
    
    .staff-card {
        padding: 1rem;
    }
    
    .staff-info h5 {
        font-size: 0.85rem;
    }
    
    .staff-info h4 {
        font-size: 1.1rem;
    }
    
    /* New responsive styles for leadership and coaching cards */
    .leadership-sequential {
        gap: 1rem;
    }
    
    .leadership-card {
        padding: 1rem;
    }
    
    .leadership-content h5 {
        font-size: 0.85rem;
    }
    
    .leadership-content h4 {
        font-size: 1.1rem;
    }
    
    .coaching-sequential {
        gap: 1rem;
    }
    
    .coaching-card {
        padding: 1rem;
    }
    
    .coaching-content h5 {
        font-size: 0.85rem;
    }
    
    .coaching-content h4 {
        font-size: 1.1rem;
    }
    
    .media-person-card {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .media-person-content h5 {
        font-size: 0.85rem;
    }
    
    .media-person-content h4 {
        font-size: 1.1rem;
    }
} 

/* Extra small mobile devices */
@media (max-width: 320px) {
    .profile-header {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .profile-image {
        width: 40px;
        height: 40px;
    }
    
    .profile-info h5 {
        font-size: 0.75rem;
    }
    
    .profile-info h4 {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }
    
    .contact-details h4 {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .contact-details p {
        font-size: 0.85rem;
    }
    
    .contact-card {
        padding: 0.75rem;
    }
    
    .card-header,
    .card-body {
        padding: 0.75rem;
    }
    
    .leadership-card,
    .coaching-card,
    .media-card {
        padding: 0.75rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    /* Ensure touch targets are large enough */
    a {
        padding: 0.5rem;
        min-height: 44px; /* Minimum touch target size */
        min-width: 44px;
    }
    
    /* Fix contact item layout on very small screens */
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 0.25rem;
        display: flex;
    }
}