/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

:root {
    --primary-green: rgb(101, 112, 102);
    --primary-orange: #ff6900;
    --secondary-orange: #e8ae63;
    --primary-yellow: #fcb900;
    --hero-button: rgb(198, 166, 106);
    --text-dark: #444;
    --text-light: #666;
    --bg-white: #fff;
    --bg-light: #f8f9fa;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 20px;
    position: relative;
    height: 80px;
}

.nav-toggle {
    position: absolute;
    right: 20px;
}

.logo {
    position: absolute;
    top: 10px;
    left: 30px;
    background: #fff;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid var(--hero-button);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.logo img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1;
    justify-content: center;
    margin-left: 0;
    padding-left: 150px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--hero-button);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-title {
    display: none;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: var(--hero-button);
    padding-left: 1.5rem;
}

/* Clinic Tour Styles */
.clinic-tour-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.clinic-tour-intro h2 {
    color: var(--primary-green);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.clinic-tour-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

.tour-section {
    margin-bottom: 4rem;
}

.tour-section-title {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.tour-section-title i {
    color: var(--primary-orange);
    font-size: 1.8rem;
}

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

.tour-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tour-image-placeholder {
    width: 200px;
    height: 150px;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #888;
    border: 2px dashed #ddd;
}

.tour-image-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-orange);
}

.tour-image-placeholder p {
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
    font-weight: 500;
}

.tour-content h3 {
    color: var(--primary-green);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.tour-content p {
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

@media (max-width: 768px) {
    .tour-grid {
        grid-template-columns: 1fr;
    }
    
    .tour-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .tour-image-placeholder {
        width: 100%;
        margin: 0 auto;
    }
    
    .tour-section-title {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Mobile Page Image Styles */
.hero-image-mobile {
    margin-top: 2rem;
    text-align: center;
}

.hero-image-mobile img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mobile-unit-section {
    display: flex;
    flex-direction: column;
}

.mobile-unit-image {
    margin-top: 2rem;
    width: 100%;
}

.mobile-unit-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mobile-unit-image a:hover img {
    transform: scale(1.02);
}

.mobile-team-showcase {
    margin: 4rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.mobile-team-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.team-image-card {
    text-align: center;
}

.team-image-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.team-image-card a:hover img {
    transform: scale(1.02);
}

.image-caption {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.4;
}

/* Add clickable link styling for all mobile images */
.hero-image-mobile a,
.mobile-unit-image a,
.team-image-card a {
    display: block;
    text-decoration: none;
}

.hero-image-mobile a:hover img {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .mobile-team-images {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mobile-unit-image img {
        height: 250px;
    }
    
    .team-image-card img {
        height: 280px;
    }
}

/* Team Page Styles */
.team-profile {
    margin: 3rem 0;
}

.team-member-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.team-member-image {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member-image-shelly {
    width: 100%;
    height: 475px;
    border-radius: 10px;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member-info h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.team-title {
    color: var(--primary-orange);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.team-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.team-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.team-section h4 {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.team-section h4 i {
    color: var(--primary-orange);
}

.team-details {
    list-style: none;
    padding: 0;
}

.team-details li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.2rem;
}

.team-details li:before {
    content: "•";
    color: var(--primary-orange);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.team-bio {
    line-height: 1.7;
    color: var(--text-dark);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .team-member-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

    .team-member-image {
        height: 300px;
    }

    .team-member-info h2 {
        font-size: 2rem;
    }
}

/* Hero Section */
.hero {
    margin-top: 0;
    padding-top: 0;
    min-height: 600px;
    display: flex;
}

.hero .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    min-height: 600px;
    width: 100%;
}

.hero-left {
    background-color: rgb(62, 68, 62);
    padding: 180px 60px 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-left h1 .hero-subtitle {
    font-size: 2.4rem;
    font-weight: 500;
}

.hero-left h2 {
    font-size: 1.8rem;
    font-weight: 300;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-left p {
    font-size: 1.1rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-left .btn-primary {
    background: var(--hero-button);
    color: white;
    display: inline-block;
    width: auto;
    flex-shrink: 0;
    white-space: nowrap;
    padding: 12px 24px;
    align-self: flex-start;
}

.hero-left .btn-primary:hover {
    background: rgb(101, 112, 102);
}

.hero-left .btn-call {
    background: var(--primary-orange);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: auto;
    flex-shrink: 0;
    white-space: nowrap;
    padding: 12px 24px;
    align-self: flex-start;
    text-decoration: none;
}

.hero-left .btn-call:hover {
    background: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 105, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hero-right {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-orange);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-orange);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: rgb(232, 224, 208);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-green);
}

.services-subheader {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: var(--primary-green);
    font-size: 1.5rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.feature span {
    font-weight: 600;
    color: var(--primary-green);
}

.about-image {
    display: flex;
    justify-content: center;
}

.placeholder-image {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 4rem 2rem;
    text-align: center;
    border: 2px dashed #ddd;
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.placeholder-image i {
    font-size: 4rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.placeholder-image p {
    color: #666;
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: rgb(233, 235, 233);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-green);
}

.contact-content {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-green);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-top: 0.3rem;
}

.contact-item strong {
    display: block;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-map {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
}

.contact-map iframe {
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-right: 20px;
}

/* Client Form Section */
.client-form {
    padding: 80px 0;
    background: var(--bg-light);
}

.client-form h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-green);
}

.form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.form-intro h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.contact-form textarea {
    margin-bottom: 1rem;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
}

.contact-form .btn-primary {
    background: var(--hero-button);
    color: white;
}

.contact-form .btn-primary:hover {
    background: rgb(101, 112, 102);
}

/* Footer */
.footer {
    background: rgb(101, 112, 102);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.emergency-phone {
    color: var(--primary-yellow);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
    font-weight: normal;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--primary-yellow);
    text-decoration: underline;
}

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 8px 0 0 8px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.3);
    transition: width 0.3s ease, padding 0.3s ease;
    overflow: hidden;
    white-space: nowrap;
    padding: 0 15px;
    position: relative;
}

.floating-btn i {
    position: absolute;
    right: 20px;
    width: 20px;
    text-align: center;
}

.floating-btn .btn-text {
    opacity: 0;
    margin-right: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.call-btn:hover {
    width: 200px;
    padding-left: 20px;
}

.call-btn:hover .btn-text {
    opacity: 1;
    transform: translateX(0);
}

.emergency-btn:hover {
    width: 200px;
    padding-left: 20px;
}

.emergency-btn:hover .btn-text {
    opacity: 1;
    transform: translateX(0);
}

.call-btn {
    background: var(--hero-button) !important;
}

.emergency-btn {
    background: #dc3545 !important;
}


/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        padding: 1rem 20px;
        height: 80px;
    }

    .nav-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .mobile-title {
        display: block;
        color: var(--primary-green);
        font-size: 1.2rem;
        font-weight: 600;
        position: absolute;
        left: 120px;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
        text-align: center;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        margin-left: 0;
        padding-left: 0;
    }
    
    .logo {
        width: 100px;
        height: 100px;
        top: 15px;
        left: 20px;
        border: 2px solid var(--hero-button);
    }
    
    .logo img {
        width: 75%;
        height: 75%;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    /* Mobile Dropdown Styles */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        border-radius: 0;
        padding: 0;
        margin-top: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        text-align: center;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        max-height: 200px;
    }

    .dropdown-menu a {
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
        text-align: center;
        display: block;
        width: 100%;
    }

    .dropdown-toggle {
        text-align: center;
        width: 100%;
        justify-content: center;
    }

    .dropdown-toggle i {
        transition: transform 0.3s ease;
    }

    .dropdown:hover .dropdown-toggle i,
    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 0;
    }

    .hero-left {
        order: 2;
        padding: 40px 30px;
        text-align: center;
    }
    
    .hero-left .btn-primary {
        align-self: center;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-left .btn-call {
        align-self: center;
    }

    .hero-right {
        order: 1;
        height: 400px;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .hero-left h2 {
        font-size: 1.5rem;
    }

    .about-content,
    .contact-content,
    .form-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-map iframe {
        height: 300px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .floating-contact {
        bottom: 20px;
        right: 0;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Emergency Page Styles */
.emergency-hero {
    background: rgb(232, 224, 208);
    padding: 120px 0 60px;
    text-align: center;
}

.emergency-hero h1 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.emergency-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.emergency-contacts {
    padding: 40px 0 80px;
    background: white;
}

.emergency-intro {
    text-align: center;
    margin-bottom: 1rem;
}

.emergency-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.emergency-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.emergency-clinic {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.emergency-clinic h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.clinic-info {
    margin-bottom: 1.5rem;
}

.clinic-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.clinic-detail i {
    color: var(--primary-green);
    font-size: 1rem;
    width: 18px;
}

.clinic-detail span {
    color: var(--text-dark);
    font-weight: 500;
}

.clinic-description {
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
}

.emergency-note {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-green);
}

.note-content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.note-content i {
    color: var(--primary-green);
    font-size: 2rem;
    margin-top: 0.25rem;
}

.note-content h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.note-content ul {
    color: var(--text-light);
    line-height: 1.6;
    margin-left: 1.5rem;
}

.note-content li {
    margin-bottom: 0.5rem;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Section padding adjustment for fixed header */
section {
    scroll-margin-top: 80px;
}