:root {
    /* Mindfulness Palette */
    --primary-color: #8FA998;
    /* Soft Sage Green */
    --secondary-color: #475C7A;
    /* Slate Blue */
    --accent-color: #D4A5A5;
    /* Muted Pink/Rose */
    --bg-color: #F9F9F9;
    /* Off-white/Cream */
    --card-bg: #FFFFFF;
    --text-color: #333333;
    --text-muted: #666666;
    --font-main: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    line-height: 1.8;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--secondary-color);
    position: relative;
}

.section-header::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 20px auto 0;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.navbar-brand {
    color: var(--secondary-color) !important;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    margin-left: 20px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: #fdfbfb;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background-image: url('assets/images/image.png');
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(249, 249, 249, 0.85);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-date-venue {
    display: inline-block;
    background-color: white;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    color: var(--secondary-color);
    font-weight: 500;
}

.btn-register-hero {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    margin-top: 40px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-register-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(143, 169, 152, 0.3);
    background-color: #7e9686;
    color: white;
}

/* Welcome Section */
.welcome-section {
    padding: 100px 0;
    background-color: white;
}

.welcome-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.theme-highlight {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.5rem;
    display: block;
    margin: 30px 0;
}

/* Program Section */
.program-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.schedule-card {
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.schedule-item {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    transition: background-color 0.3s;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item:hover {
    background-color: #fafafa;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: -10px;
    margin-right: -10px;
    border-radius: 10px;
}

.time-col {
    min-width: 150px;
    font-weight: 600;
    color: var(--primary-color);
}

.topic-col {
    text-align: center;
}

.venue-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: white;
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .schedule-item {
        flex-direction: column;
    }

    .time-col,
    .speaker-col {
        width: 100%;
        text-align: left;
        margin-bottom: 5px;
    }

    .speaker-col {
        margin-top: 5px;
        color: var(--primary-color);
    }
}

.hover-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Guidelines Section */
.guidelines-section {
    padding: 100px 0;
    background-color: white;
}

.guidelines-section .card {
    border-radius: 20px;
    overflow: hidden;
}

.guidelines-section .card-header {
    background-color: var(--secondary-color) !important;
    border-bottom: none;
    padding: 20px 25px;
}

.guidelines-section .card-header h4 {
    color: white !important;
    font-weight: 500;
}

.guidelines-section .list-group-item {
    border: none;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s;
}

.guidelines-section .list-group-item:hover {
    background-color: #fafafa;
}

.guidelines-section .list-group-item i {
    color: var(--primary-color) !important;
}

/* Cancellation Policy Card */
.guidelines-section .card-header.bg-danger {
    background-color: var(--accent-color) !important;
}

.guidelines-section .border-success {
    border-color: var(--primary-color) !important;
}

.guidelines-section .text-success {
    color: var(--primary-color) !important;
}

.guidelines-section .border-warning {
    border-color: #e9c46a !important;
}

.guidelines-section .text-warning {
    color: #e9c46a !important;
}

.guidelines-section .border-danger {
    border-color: var(--accent-color) !important;
}

.guidelines-section .text-danger {
    color: var(--accent-color) !important;
}

.guidelines-section .alert-info {
    background-color: rgba(143, 169, 152, 0.1);
    border-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.team-section .card {
    border-radius: 20px;
    background-color: white;
}

.team-section .card-title {
    color: var(--secondary-color) !important;
}

.team-section i.bi-person-circle {
    color: var(--primary-color) !important;
}

/* Correspondence Section */
.correspondence-section {
    padding: 100px 0;
    background-color: white;
}

.correspondence-section .card {
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    overflow: hidden;
}

.correspondence-section .card-header {
    background-color: var(--secondary-color) !important;
    border-bottom: none;
    padding: 25px;
}

.correspondence-section .card-header h4 {
    color: white !important;
    font-weight: 500;
}

.correspondence-section .btn-outline-primary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.correspondence-section .btn-outline-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

/* Team Section - New Design */
.team-header-bar {
    background-color: var(--secondary-color);
    border-radius: 10px;
    display: inline-block;
    padding: 15px 50px !important;
    margin: 0 auto;
}

.team-header-bar h2 {
    color: white !important;
    font-weight: 600;
    letter-spacing: 2px;
}

.team-card {
    background: linear-gradient(135deg, #1a5653 0%, #2d7a77 100%);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.team-name {
    color: white;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.team-role {
    color: #e9a825;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.team-details p {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.team-phone {
    color: #e9a825 !important;
    font-weight: 600;
    margin-top: 10px;
}

/* Team Section Mobile Responsive */
@media (max-width: 768px) {
    .team-card {
        padding: 20px 15px !important;
    }

    .team-name {
        font-size: 1.1rem;
    }

    .team-role {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .team-details p {
        font-size: 0.8rem;
        word-wrap: break-word;
    }

    .team-header-bar {
        padding: 10px 20px !important;
        width: 90%;
    }

    .team-header-bar h2 {
        font-size: 1.3rem;
    }

    .guidelines-section .card-body {
        padding: 10px !important;
    }

    .guidelines-section .list-group-item {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .correspondence-section .card-body {
        padding: 20px !important;
    }

    .correspondence-section .btn {
        font-size: 0.85rem;
        padding: 10px 15px !important;
    }
}

@media (max-width: 480px) {
    .team-card {
        padding: 15px 10px !important;
    }

    .team-name {
        font-size: 1rem;
    }

    .team-details p {
        font-size: 0.75rem;
    }

    .correspondence-section .d-flex {
        flex-direction: column !important;
    }

    .correspondence-section .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Speakers Section */
.speakers-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f0 100%);
}

.speakers-header-bar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: inline-block;
    padding: 20px 60px !important;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.speakers-header-bar h2 {
    color: white !important;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 1.8rem;
}

.speaker-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.speaker-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.speaker-card:hover::before {
    opacity: 1;
}

.speaker-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4);
}

.speaker-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    transition: transform 0.3s ease, background 0.3s ease;
}

.speaker-card:hover .speaker-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.speaker-name {
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.speaker-topic-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.speaker-topic {
    color: #ffd700;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
    min-height: 50px;
}

.speaker-time {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 10px 20px;
    color: white;
    font-size: 0.9rem;
    display: inline-block;
}

.speaker-time-icon {
    margin-right: 5px;
}

.speaker-designation {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.speaker-credentials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.credential-badge {
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.5);
    color: #ffd700;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.speaker-position {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.3;
}

.speaker-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Speakers Section Responsive */
@media (max-width: 768px) {
    .speakers-section {
        padding: 60px 0;
    }

    .speakers-header-bar {
        padding: 15px 30px !important;
        width: 90%;
    }

    .speakers-header-bar h2 {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .speaker-card {
        padding: 25px 20px;
    }

    .speaker-icon {
        width: 80px;
        height: 80px;
    }

    .speaker-icon svg {
        width: 45px;
        height: 45px;
    }

    .speaker-name {
        font-size: 1.1rem;
    }

    .speaker-topic {
        font-size: 0.9rem;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .speakers-header-bar h2 {
        font-size: 1rem;
    }

    .speaker-card {
        padding: 20px 15px;
    }

    .speaker-name {
        font-size: 1rem;
    }

    .speaker-topic {
        font-size: 0.85rem;
    }

    .speaker-time {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
}
/* ===== Professional Registration Form ===== */
.registration-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.registration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.registration-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.registration-header {
    background: linear-gradient(135deg, #1a5653 0%, #2d7a77 100%);
    padding: 40px;
    text-align: center;
    color: white;
}

.registration-header h2 {
    color: white !important;
    font-weight: 700;
    font-size: 2rem;
}

.registration-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.registration-body {
    padding: 40px;
}

.form-section {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #eef2f7;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.form-section-title i {
    color: var(--primary-color);
}

.form-floating .form-control,
.form-floating .form-select {
    border: 2px solid #e0e6ed;
    border-radius: 12px;
    height: 58px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-floating .form-control:focus,
.form-floating .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(143, 169, 152, 0.15);
}

.form-floating > label {
    padding: 1rem 1rem;
    color: #6c757d;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.category-option {
    cursor: pointer;
}

.category-option input {
    display: none;
}

.category-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    border: 2px solid #e0e6ed;
    border-radius: 16px;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 100px;
}

.category-box i {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #6c757d;
    transition: color 0.3s;
}

.category-box span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #495057;
}

.category-option input:checked + .category-box {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(143, 169, 152, 0.1) 0%, rgba(143, 169, 152, 0.05) 100%);
    box-shadow: 0 5px 20px rgba(143, 169, 152, 0.2);
}

.category-option input:checked + .category-box i {
    color: var(--primary-color);
}

.category-option:hover .category-box {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Upload Area */
.upload-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 2px dashed #d0d7de;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8fafc;
    height: 100%;
    min-height: 120px;
}

.upload-area:hover {
    border-color: var(--primary-color);
    background: rgba(143, 169, 152, 0.05);
}

.upload-area i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.upload-text {
    font-weight: 600;
    color: #495057;
    margin-bottom: 5px;
}

.upload-info {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Registration Footer */
.registration-footer {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eef2f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.organiser-info {
    color: #6c757d;
    font-size: 0.95rem;
}

.organiser-info a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}

.organiser-info a:hover {
    text-decoration: underline;
}

.btn-register {
    background: linear-gradient(135deg, #1a5653 0%, #2d7a77 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 86, 83, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .registration-header {
        padding: 30px 20px;
    }
    
    .registration-header h2 {
        font-size: 1.5rem;
    }
    
    .registration-body {
        padding: 25px 20px;
    }
    
    .category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .category-box {
        padding: 15px 10px;
        min-height: 80px;
    }
    
    .category-box i {
        font-size: 1.4rem;
    }
    
    .category-box span {
        font-size: 0.75rem;
    }
    
    .registration-footer {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-register {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .category-box {
        flex-direction: row;
        justify-content: flex-start;
        gap: 15px;
        min-height: auto;
        padding: 15px 20px;
    }
    
    .category-box i {
        margin-bottom: 0;
    }
}

/* Fix Registration Form Label Colors */
.registration-section .form-label {
    color: white !important;
    font-weight: 500;
}

.registration-section .section-header {
    color: white !important;
}

.registration-section .section-header::after {
    background-color: white;
}

.registration-section .form-check-label {
    color: white !important;
}

.registration-section .form-text {
    color: rgba(255, 255, 255, 0.8) !important;
}

.registration-section .text-muted {
    color: rgba(255, 255, 255, 0.9) !important;
}

.registration-section .btn-primary {
    background: linear-gradient(135deg, #1a5653 0%, #2d7a77 100%);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.registration-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Left-align form labels */
.registration-section .form-label {
    text-align: left !important;
    display: block;
}

.registration-section .mb-4 {
    text-align: left;
}

.registration-section .registration-form {
    text-align: left;
}

/* ===== Mobile Responsiveness Fixes ===== */

/* Prevent horizontal overflow */
html, body {
    overflow-x: hidden;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

/* Registration Form Mobile Fix */
@media (max-width: 768px) {
    .registration-section .container {
        padding: 0 15px;
    }
    
    .registration-section .registration-form {
        padding: 20px 15px;
    }
    
    .registration-section .form-control,
    .registration-section .form-select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .registration-section .d-flex.gap-4 {
        flex-direction: column;
        gap: 10px !important;
    }
    
    .registration-section .form-check {
        margin-bottom: 8px;
    }
    
    .registration-section .btn-primary {
        width: 100%;
    }
}

/* Speaker Cards Mobile Fix */
@media (max-width: 576px) {
    .speaker-card {
        padding: 20px 15px;
    }
    
    .speaker-designation {
        font-size: 0.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .speaker-position {
        font-size: 0.75rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .credential-badge {
        font-size: 0.65rem;
        padding: 3px 8px;
    }
    
    .speaker-credentials {
        gap: 5px;
    }
}

/* Team Cards Mobile Fix */
@media (max-width: 576px) {
    .team-card {
        padding: 15px 12px !important;
    }
    
    .team-details p {
        font-size: 0.75rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.4;
    }
    
    .team-name {
        font-size: 0.95rem;
    }
    
    .team-role {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .team-phone {
        font-size: 0.8rem !important;
    }
}

/* Schedule/Program Section Mobile Fix */
@media (max-width: 576px) {
    .schedule-card {
        padding: 20px 15px;
    }
    
    .schedule-item {
        padding: 15px 0;
    }
    
    .time-col {
        min-width: auto;
        font-size: 0.85rem;
    }
    
    .topic-col {
        font-size: 0.85rem;
    }
    
    .speaker-col {
        font-size: 0.8rem;
    }
}

/* Fee Table Mobile Fix */
@media (max-width: 576px) {
    .fee-section .table {
        font-size: 0.75rem;
    }
    
    .fee-section .table th,
    .fee-section .table td {
        padding: 8px 5px;
    }
    
    .fee-section .list-group-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

/* Guidelines Section Mobile Fix */
@media (max-width: 576px) {
    .guidelines-section .list-group-item {
        font-size: 0.8rem;
        padding: 12px 10px;
    }
    
    .guidelines-section .card-header h4 {
        font-size: 1rem;
    }
}

/* Correspondence Section Mobile Fix */
@media (max-width: 576px) {
    .correspondence-section .card-body {
        padding: 20px 15px !important;
    }
    
    .correspondence-section .display-6 {
        font-size: 1.5rem !important;
    }
    
    .correspondence-section .lead {
        font-size: 0.9rem;
    }
}

/* Venue Images Mobile Fix */
@media (max-width: 576px) {
    .venue-section .col-md-3 img {
        height: 180px !important;
    }
}

/* Welcome Text Mobile Fix */
@media (max-width: 576px) {
    .welcome-text {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .welcome-text p {
        word-wrap: break-word;
    }
}

/* Office Bearers Section */
.office-bearers-section {
    background-color: var(--bg-color);
}

.bearer-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(143, 169, 152, 0.1);
}

.bearer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(143, 169, 152, 0.2);
}

.bearer-name {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.bearer-role {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
