/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #E5E1EE;
}

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

/* Typography */
h1, h2, h3, h4 {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #555;
}

a {
    color: #294936;
    text-decoration: none;
}

a:hover {
    color: #2980b9;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-img {
    height: 60px;
    margin-right: 10px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #2c3e50;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.menu-toggle:hover {
    background-color: #f8f9fa;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #555;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #294936;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #294936;
    color: white;
}

.btn-primary:hover {
    background: #231123;
    color: white;
}

.btn-secondary {
    background: #E5E1EE;
    color: #2c3e50;
    border: 1px solid #bdc3c7;
}

.btn-secondary:hover {
    background: #d5dbdb;
    color: #2c3e50;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Slideshow */
.hero-slideshow {
    position: relative;
}

.slideshow-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.slide {
    display: none;
    position: relative;
    animation: slideIn 0.5s ease-in-out;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 7px; /* Moved up from the bottom */
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1.2rem;
    color: #2c3e50;
    transition: all 0.3s;
}

.slide-btn:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.slide-btn.prev {
    left: 15px;
    border-radius: 0 5px 5px 0;
}

.slide-btn.next {
    right: 15px;
    border-radius: 5px 0 0 5px;
}

.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active,
.indicator:hover {
    background: white;
    transform: scale(1.2);
}

@keyframes slideIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Features Grid */
.features {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.feature-highlight {
    border:#294936 5px solid;
    border-radius: 10px;
    padding: 1.5rem;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* Services - Thinner List Style */
.services {
    padding: 80px 0;
    background: white;
}

.search-box {
    max-width: 500px;
    margin: 0 auto 2rem;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #ecf0f1;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
}

.search-input:focus {
    border-color: #294936;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-row {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.service-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 2.5rem;
    color: white;
    width: 200px;
    height: 200px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 1;
    overflow: hidden;
}
.service-icon img {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    flex: 1;
}

.service-title {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
    font-size: 1.3rem;
}

.service-description {
    color: #666;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.service-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: #666;
}

.service-actions {
    display: flex;
    gap: 0.75rem;
    min-width: 150px;
    flex-shrink: 0;
}

.service-actions .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Service Detail Pages - Simple Layout */
.service-simple-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start; /* Changed from 'center' to 'start' */
    max-width: 1000px;
    margin: 0 auto;
}

.service-text {
    order: 1; /* Ensures text stays on left */
}

.service-image {
    order: 2; /* Ensures image stays on right */
    justify-self: center; /* Centers the image in its grid area */
}
.service-simple {
    padding: 60px 0;
    background: white;
}

.service-simple-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.service-text h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid #294936;
}

.detail-item {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #444;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item strong {
    color: #2c3e50;
    font-weight: 600;
}

.book-appointment {
    text-align: left;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.book-appointment .btn {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
}

.service-image {
    text-align: center;
}

.service-image img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    margin-bottom: 1rem;
}

.image-caption {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin: 0;
}
.service-detail {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.service-info {
    flex: 1;
}

.service-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.service-icon-large {
    font-size: 6rem;
    background: linear-gradient(135deg, #294936, #2980b9);
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-content {
    padding: 60px 0;
    background: white;
}

.content-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.content-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.info-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.info-box {
    background: #e3f2fd;
    border: 2px solid #2196f3;
    border-radius: 10px;
    padding: 2rem;
}

.info-box.warning {
    background: #fff3e0;
    border-color: #ff9800;
}

.info-box h3 {
    color: #1976d2;
    margin-bottom: 1rem;
}

.info-box.warning h3 {
    color: #f57c00;
}

.info-box ul {
    margin: 0;
    padding-left: 1.5rem;
}

.preparation {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.prep-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.prep-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: #294936;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step-content p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.booking-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.booking-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.booking-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.booking-note {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.related-services {
    padding: 60px 0;
    background: white;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.related-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.related-item:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    color: inherit;
}

.related-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #294936, #2980b9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.related-content h4 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.related-content p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* About Page - NABL Accreditation Banner - Minimal & Elegant */
.accreditation-banner {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 3rem 0;
}

.accreditation-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.accreditation-badge {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon img {
    width: 80px !important;
    height: auto !important;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

.accreditation-info {
    flex: 1;
}

.accreditation-info h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.accreditation-info p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.accreditation-info strong {
    color: #2c3e50;
    font-weight: 600;
}

/* About Page - Doctors Long Boxes */
.doctors {
    padding: 80px 0;
    background: white;
}

.doctors-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.doctor-row {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.doctor-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.doctor-photo {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.doctor-details {
    flex: 1;
}

.doctor-details h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.doctor-title {
    color: #294936;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.doctor-specialty,
.doctor-experience {
    color: #666;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.doctor-qualifications span {
    background: #294936;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.values {
    padding: 80px 0;
    background: #f8f9fa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* Contact Page - Long Boxes */
.contact {
    padding: 80px 0;
}

.contact-main {
    margin-bottom: 4rem;
}

.contact-row {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: transform 0.3s;
}

.contact-row:hover {
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #294936, #2980b9);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-content h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-content p {
    margin-bottom: 0.5rem;
}

.contact-content a {
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-note {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.branches-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.branch-row {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    align-items: center;
    transition: transform 0.3s;
}

.branch-row:hover {
    transform: translateY(-3px);
}

.branch-icon {
    font-size: 2.5rem;
    color: #294936;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.branch-photo {
    width: 200px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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


.branch-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.branch-details p {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.branch-details strong {
    color: #2c3e50;
    display: inline-block;
    min-width: 80px;
}

.emergency-contact {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.3);
}

.emergency-content h3 {
    color: white;
    margin-bottom: 1rem;
}

.emergency-number {
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0;
}

.emergency-number a {
    color: white;
    text-decoration: none;
}

.emergency-note {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin: 0;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #294936 0%, #2980b9 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #294936;
}

/* Footer */
.footer {
    background: #231123;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ecf0f1;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        padding: 1rem 0;
        border-top: 1px solid #f1f5f9;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        text-align: center;
        margin: 0;
        border-bottom: 1px solid #f8f9fa;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 2rem;
        color: #555;
        font-weight: 500;
    }
    
    .nav-link:hover {
        background-color: #f8f9fa;
        color: #294936;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .slide img {
        height: 250px;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon-large {
        width: 100px;
        height: 100px;
        font-size: 4rem;
    }
    
    .content-row {
        grid-template-columns: 1fr;
    }
    
    .info-boxes {
        grid-template-columns: 1fr;
    }
    
    .prep-steps {
        grid-template-columns: 1fr;
    }
    
    .accreditation-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .accreditation-badge {
        justify-content: center;
    }
    
    .accreditation-info h2 {
        font-size: 1.75rem;
    }
    
    .accreditation-info p {
        font-size: 1rem;
    }
    
    .service-simple-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .service-text h1 {
        font-size: 2rem;
    }
    
    .service-image img {
        max-width: 100%;
        height: 250px;
    }
    
    .service-row {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .service-actions {
        flex-direction: row;
        justify-content: center;
        min-width: auto;
        width: 100%;
    }
    
    .doctor-row {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .contact-row,
    .branch-row {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .features-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .booking-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .related-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .book-appointment {
    flex-direction: column;
    align-items: center;
}

    .book-appointment .btn {
        width: 100%;
        min-width: 200px;
    }
}

/* Additional small screen adjustments */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-row {
        padding: 1rem;
    }
    
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .service-meta {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.8rem;
    }
    
    .service-actions {
        flex-direction: column;
    }
    
    .service-actions .btn {
        width: 100%;
    }
    .book-appointment {
    flex-direction: column;
    align-items: center;
    }

    .book-appointment .btn {
        width: 100%;
        min-width: 200px;
}
}

.accreditation-notice {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 4px 20px rgba(39, 174, 96, 0.3);
}

.accreditation-content h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.accreditation-content p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.accreditation-content p:last-child {
    margin-bottom: 0;
    font-style: italic;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.hidden { display: none; }
