/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Bengali font */
@font-face {
    font-family: 'CustomBengaliFont';
    src: url('../fonts/your-bengali-font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'CustomBengaliFont', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* SEO-friendly text selection - only prevent on headers */
h1, h2, h3, .logo-text, .tagline, .header-tagline {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow selection for important content (SEO-friendly) */
p, .qualifications, .schedule, .chamber-info, .contact-text, .copyright {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Logo styling for custom image */
.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}

/* Logo image sizing */
.logo img {
    width: 120%;
    height: 120%;
    object-fit: contain;
    padding: 8px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.tagline {
    font-size: 16px;
    opacity: 0.9;
}

/* Tagline styling */
.header-tagline {
    font-size: 16px;
    opacity: 0.9;
    text-align: right;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hero section */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(52, 152, 219, 0.9)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Doctor name with small photo */
.doctor-name-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.hero-photo-small {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.hero-photo-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-name-text {
    text-align: left;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.hero-contact {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

/* Mobile number styling in hero */
.serial-info {
    font-size: 20px;
    margin-bottom: 10px;
    color: #f1c40f;
    font-weight: bold;
    line-height: 1.4;
}

/* Mobile number with animation */
.mobile-number-hero {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.mobile-number-hero a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
    animation: pulse 2s infinite;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(46, 204, 113, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
    }
}

/* Ring animation for phone icon */
@keyframes ring {
    0% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(15deg);
    }
    20% {
        transform: rotate(-15deg);
    }
    30% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-15deg);
    }
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.mobile-number-hero a:hover {
    animation: none;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.8);
    background: linear-gradient(45deg, #2ecc71, #3498db);
}

.mobile-number-hero .fa-phone-alt {
    animation: ring 3s infinite;
    display: inline-block;
    transform-origin: 50% 50%;
}

.mobile-number-hero a:hover .fa-phone-alt {
    animation: ring 0.5s infinite;
}

/* Call to action text */
.call-to-action {
    font-size: 18px;
    color: #f1c40f;
    margin-top: 10px;
    font-weight: bold;
    animation: fadeInOut 3s infinite;
}

@keyframes fadeInOut {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

.scam-warning-hero {
    background-color: rgba(231, 76, 60, 0.8);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;
    display: inline-block;
    margin-top: 15px;
}

.hero-info-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.hero-chamber, .hero-schedule {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 20px;
    flex: 1;
    min-width: 300px;
    backdrop-filter: blur(5px);
    text-align: left;
}

.hero-chamber h2, .hero-schedule h2 {
    color: #f1c40f;
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(241, 196, 15, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-chamber p, .hero-schedule p {
    font-size: 17px;
    line-height: 1.6;
}

.header-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.notice-bar {
    display: none;
    width: 100%;
    text-align: center;
    padding: 6px 10px;
    font-size: 14px;
    font-weight: 500;
    background-color: rgba(255, 204, 0, 0.15);
    color: #ffcc00;
    border-bottom: 1px solid rgba(255, 204, 0, 0.4);
    border-radius: 4px;
    line-height: 1.4;
    white-space: normal;
    word-break: break-word;
}

.notice-bar.visible {
    display: block;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.header-language-top {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.language-switcher .lang-link.active {
    color: #f1c40f;
    text-decoration: none;
}

.language-switcher .lang-link {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    background: transparent;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.language-switcher .lang-link:hover {
    color: #2FC383;
    /* text-decoration: underline; */
}

.language-switcher .lang-link.lang-clicked {
    transform: none;
}

.language-switcher .lang-link:focus-visible {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid #f1c40f;
    outline-offset: 3px;
    border-radius: 4px;
}

.hero-chamber .chamber-name {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 8px;
    color: white;
}

/* Main content */
.content {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0;
    gap: 40px;
}

.doctor-info {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.doctor-photo {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.photo-container {
    width: 300px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 8px solid white;
}

.doctor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section styles */
.section {
    margin-bottom: 30px;
}

.section-title {
    color: #2c3e50;
    font-size: 22px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 3px solid #3498db;
    display: inline-block;
}

.qualifications {
    line-height: 1.8;
    font-size: 18px;
}

/* Doctor name bold in qualifications section */
.doctor-name-bold {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    display: block;
}

/* Registration number styling */
.registration-number {
    font-family: inherit;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #ddd;
}

/* Contact info */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-icon {
    background-color: #3498db;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Mobile number styling */
.mobile-number {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    background-color: #f0f8ff;
    padding: 15px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 10px;
    transition: all 0.3s ease;
    border-left: 5px solid #3498db;
}

.mobile-number a {
    color: inherit;
    text-decoration: none;
}

.mobile-number:hover {
    background-color: #e1f0fa;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

/* Serial text styling with call time */
.serial-text {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
    line-height: 1.4;
}

.serial-text .call-time {
    font-size: 16px;
    color: #e74c3c;
    font-weight: 600;
    display: block;
    margin-top: 3px;
}

/* Warning message styling */
.warning-message {
    background-color: #fff3cd;
    border-left: 5px solid #f39c12;
    color: #856404;
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.warning-message i {
    color: #e74c3c;
    font-size: 20px;
}

/* Schedule styles */
.schedule {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid #2ecc71;
}

.schedule-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
    align-items: flex-start;
}

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

/* Friday closed styling */
.schedule-item.friday-closed {
    color: #e74c3c;
    font-weight: bold;
}

.schedule-item.friday-closed .day {
    color: #e74c3c;
}

.schedule-item.friday-closed .time {
    color: #e74c3c;
    font-weight: bold;
}

.day {
    font-weight: bold;
    color: #2c3e50;
    flex: 1;
    min-width: 150px;
    margin-bottom: 5px;
}

.time {
    color: #2c3e50;
    text-align: right;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Chamber info */
.chamber-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid #f39c12;
}

.chamber-name {
    font-weight: bold;
    color: #2c3e50;
    font-size: 20px;
    margin-bottom: 10px;
}

/* SEO-friendly hidden headings for structure */
.seo-heading {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

.copyright {
    font-size: 16px;
    opacity: 0.8;
}

/* Responsive styles */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .header-tagline {
        text-align: center;
        max-width: 100%;
        white-space: nowrap;
    }

    .header-meta {
        align-items: center;
    }

    .header-language-top {
        justify-content: center;
        margin-bottom: 2px;
    }
    
    .doctor-name-container {
        flex-direction: column;
        text-align: center;
    }
    
    .doctor-name-text {
        text-align: center;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .mobile-number-hero {
        font-size: 24px;
    }
    
    .serial-info {
        font-size: 18px;
    }
    
    .serial-info .call-time {
        font-size: 16px;
    }
    
    .hero-photo-small {
        width: 90px;
        height: 90px;
    }
    
    .hero-chamber, .hero-schedule {
        min-width: 100%;
    }
    
    .content {
        flex-direction: column;
    }
    
    .photo-container {
        width: 250px;
        height: 350px;
    }
    
    .mobile-number {
        font-size: 20px;
    }
    
    .serial-text {
        font-size: 16px;
    }
    
    .serial-text .call-time {
        font-size: 15px;
    }
    
    .doctor-name-bold {
        font-size: 20px;
    }
    
    .call-to-action {
        font-size: 16px;
    }
    
    /* Mobile schedule fix */
    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .day {
        margin-bottom: 5px;
        min-width: 100%;
    }
    
    .time {
        text-align: left;
        margin-left: 0;
    }
    
    .schedule-item.friday-closed .time {
        font-weight: bold;
        color: #e74c3c;
    }
    
    /* Adjust logo size for mobile */
    .logo img {
        width: 110%;
        height: 110%;
    }

    .content {
        flex-direction: column;
        gap: 30px;
    }
    
    .doctor-info, .doctor-portfolio {
        min-width: 100%;
        width: 100%;
    }
    
    .doctor-portfolio .photo-container {
        height: 300px;
    }
    
    .text-block {
        padding: 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .qualifications {
        font-size: 16px;
    }

    .contact-item {
        font-size: 14px;
    }
    
    .mobile-number {
        font-size: 18px;
    }
    
    .hero-photo-small {
        width: 80px;
        height: 80px;
    }
    
    .photo-container {
        width: 200px;
        height: 300px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .mobile-number-hero {
        font-size: 20px;
    }
    
    .serial-info {
        font-size: 16px;
    }
    
    .scam-warning-hero {
        font-size: 13px;
    }
    
    .hero-chamber h2, .hero-schedule h2 {
        font-size: 18px;
    }
    
    .hero-chamber p, .hero-schedule p {
        font-size: 15px;
    }
    
    .serial-text {
        font-size: 15px;
    }
    
    .doctor-name-bold {
        font-size: 18px;
    }
    
    .mobile-number-hero a {
        padding: 8px 15px;
    }
    
    /* Adjust logo size for small mobile */
    .logo img {
        width: 100%;
        height: 100%;
    }
    
    /* Schedule adjustments for very small screens */
    .schedule {
        padding: 15px;
    }
    
    .schedule-item {
        padding: 10px 0;
    }

    .doctor-portfolio .photo-container {
        height: 250px;
    }
    
    .text-block {
        padding: 15px;
        font-size: 15px;
        line-height: 1.7;
    }
    
    .doctor-info, .doctor-portfolio {
        padding: 20px;
    }
}

/* Print styles for SEO */
@media print {
    body {
        background-color: white;
        color: black;
        font-size: 12pt;
    }
    
    .hero {
        background: white !important;
        color: black;
        padding: 20px 0;
    }
    
    .mobile-number-hero a, .mobile-number {
        color: black !important;
        background: none !important;
        box-shadow: none !important;
        animation: none !important;
        border: 1px solid #ccc;
    }
    
    .logo img {
        filter: grayscale(100%);
    }
}


/* Right side portfolio container - Equal width with left */
.doctor-portfolio {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Make both containers equal width */
.doctor-info, .doctor-portfolio {
    flex: 1;
    min-width: 300px;
}

/* Photo container in portfolio */
.doctor-portfolio .photo-container {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 5px solid white;
    margin: 0 auto;
}

.doctor-portfolio .doctor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.doctor-portfolio .photo-container:hover .doctor-img {
    transform: scale(1.05);
}

/* Portfolio text block */
.portfolio-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text-block {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    line-height: 1.8;
    font-size: 17px;
    color: #444;
    border-left: 4px solid #3498db;
}

.text-block p {
    margin-bottom: 20px;
    text-align: justify;
}

.text-block p:last-child {
    margin-bottom: 0;
}

/* Main content layout */
.content {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0;
    gap: 40px;
}

/* Both containers take equal space */
.doctor-info, .doctor-portfolio {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* For larger screens, keep them side by side */
@media (min-width: 769px) {
    .content {
        display: flex;
        flex-wrap: nowrap;
    }
    
    .doctor-info, .doctor-portfolio {
        flex: 1;
        max-width: 50%;
    }
}

/* FAQ Section Styles - FIXED VERSION */
.faq-section {
    padding: 10px 0 30px 0; /* Reduced top padding from 40px to 10px */
    margin-top: -50px; /* Pull FAQ container closer to content above */
}

.faq-container-wrapper {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* DESKTOP: Expand to match width of two containers above */
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px; /* Added for symmetry */
    box-sizing: border-box;
}

/* Fix font inheritance */
.faq-question {
    font-family: inherit;
    width: 100%;
    padding: 18px 25px;
    background-color: #f8f9fa;
    border: none;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

/* Ensure all text elements use the same font */
.faq-question span {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    text-align: left;
    flex: 1;
}

.faq-answer p {
    font-family: inherit;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

.faq-answer strong {
    font-family: inherit;
    color: #2c3e50;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #3498db;
    box-shadow: 0 3px 10px rgba(52, 152, 219, 0.1);
}

.faq-question:hover {
    background-color: #e8f4fc;
}

.faq-question.active {
    background-color: #3498db;
    color: white;
}

.faq-question.active span {
    color: white;
}

.faq-question .fa-chevron-down {
    font-size: 14px;
    transition: transform 0.3s ease;
    margin-left: 15px;
    flex-shrink: 0;
}

.faq-question.active .fa-chevron-down {
    transform: rotate(180deg);
    color: white;
}

.faq-answer {
    padding: 0;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
    padding: 20px 25px;
    max-height: 500px;
    border-top: 1px solid #f0f0f0;
}

.faq-answer br {
    margin-bottom: 8px;
    display: block;
    content: "";
}

/* Match the section title with other sections */
.faq-section .section {
    margin-bottom: 0;
}

.faq-section .section-title {
    color: #2c3e50;
    font-size: 22px;
    margin-bottom: 25px;
    padding-bottom: 8px;
    border-bottom: 3px solid #3498db;
    display: inline-block;
}

/* Responsive FAQ - MOBILE FIX */
@media (max-width: 768px) {
    .faq-section {
        padding: 0 0 25px 0; /* Adjust padding for mobile */
        margin-top: -30px; /* Less negative margin for mobile */
    }
    
    /* MOBILE: Reset to normal container width */
    .faq-container-wrapper {
        width: 100%; /* Reset from calc(100% + 40px) */
        margin-left: 0; /* Reset from -20px */
        margin-right: 0; /* Reset from -20px */
        padding: 20px; /* Reduced padding for mobile */
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .faq-question span {
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-answer.open {
        padding: 15px 20px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
    
    .faq-section .section-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .faq-section {
        padding: 0 0 20px 0;
        margin-top: -20px;
    }
    
    .faq-container-wrapper {
        padding: 15px;
    }
    
    .faq-question {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .faq-question span {
        font-size: 15px;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-answer.open {
        padding: 12px 15px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    .faq-section .section-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
}


@media (max-width: 768px) {
    .faq-section .container {
        padding: 0; /* Remove padding from container */
    }
    
    .faq-container-wrapper {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 20px;
        /* Keep border radius if you want */
        border-radius: 0; /* Or 10px for rounded corners */
    }
}

/* Map in empty space below chamber info */
.map-in-space {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
    border-left: 4px solid #3498db;
}

.map-title {
    color: #2c3e50;
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.map-title i {
    color: #e74c3c;
}

.map-embed-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 3px solid #f8f9fa;
    margin-bottom: 20px;
    background-color: #f8f9fa;
}

.map-embed-container iframe {
    display: block;
    width: 100%;
    height: 270px;
    border: none;
}

.map-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.map-links a {
    flex: 1;
    min-width: 150px;
    background-color: #f8f9fa;
    color: #3498db;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid #e3f2fd;
}

.map-links a:hover {
    background-color: #3498db;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    border-color: #3498db;
}

.map-links a i {
    font-size: 14px;
}

/* Responsive map in space */
@media (max-width: 768px) {
    .map-in-space {
        padding: 20px;
        margin-top: 15px;
    }
    
    .map-title {
        font-size: 17px;
        margin-bottom: 15px;
    }
    
    .map-embed-container iframe {
        height: 250px;
    }
    
    .map-links {
        flex-direction: column;
    }
    
    .map-links a {
        min-width: 100%;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .map-in-space {
        padding: 15px;
    }
    
    .map-title {
        font-size: 16px;
    }
    
    .map-embed-container iframe {
        height: 200px;
    }
    
    .map-links a {
        font-size: 14px;
        padding: 8px 12px;
    }
}

/* Footer text size adjustment */
footer .container #copyright-text {
    font-size: 0.85em;
    line-height: 1.5;
    margin-bottom: 0.5em;
}

/* Optional: Adjust for better mobile responsiveness */
@media (max-width: 768px) {
    footer .container #copyright-text {
        font-size: 0.65em;
        line-height: 1.4;
    }
}
