/**
 * Custom CSS for Dr. Theodoridis Orthopädie Website
 * Based on design specifications from homepage.png and style files
 */

/* ========================================
   CSS Custom Properties (Design System)
   ======================================== */

:root {
    /* Colors */
    --primary-color: #3C4D5C;
    --secondary-color: #3C4D5C;
    --bg-light: #F2F2F2;
    --bg-white: #FFFFFF;
    --text-primary: #3C4D5C;
    --text-secondary: #7F7F8C;
    --text-light: #ABBDCC;
    --border-color: #C4C3C7;

    /* Border Radius */
    --card-radius: 23px;
    --button-radius: 10px;
    --section-radius: 25px;

    /* Spacing */
    --section-padding: 80px;
    --section-padding-mobile: 50px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

    /* Typography */
    --font-heading: 'Bona Nova', serif;
    --font-body: 'Bona Nova', sans-serif;
    --font-body-alt: 'Hind Siliguri', sans-serif;
}

/* ========================================
   Typography
   ======================================== */

.relative {
    position: relative;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-primary);
}

h1, .h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2, .h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3, .h3 {
    font-size: 1.5rem;
}

@media (max-width: 767.98px) {
    h1, .h1 {
        font-size: 1.75rem;
    }

    h2, .h2 {
        font-size: 1.5rem;
    }

    h3, .h3 {
        font-size: 1.25rem;
    }
}

/* ========================================
   Top Bar & Navigation
   ======================================== */

.top-bar {
    background: var(--bg-light);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 23px 23px;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Top Bar Layout */
.top-bar-left,
.top-bar-right {
    flex: 1;
}

.top-bar-left {
    display: flex;
    justify-content: flex-start;
}

.top-bar-center {
    flex: 0 0 auto;
}

.top-bar-right {
    display: flex;
    justify-content: flex-end;
}

/* Hamburger Button */
.hamburger-btn {
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn:hover .hamburger-line {
    background: var(--secondary-color);
}

/* Close Button */
.close-btn {
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
}

.close-line {
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transition: all 0.3s ease;
}

.close-line:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-line:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.close-btn:hover .close-line {
    background: var(--secondary-color);
}

/* Logo */
.logo-link {
    text-decoration: none;
    color: var(--text-primary);
}

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

.logo-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

@media (max-width: 767.98px) {
    .logo-icon {
        width: 50px;
        height: 50px;
    }

    .logo-title {
        font-size: 1rem;
    }

    .logo-subtitle {
        font-size: 0.75rem;
    }
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
}

.language-current {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.language-current:hover {
    opacity: 0.8;
}

.flag-emoji {
    font-size: 1.5rem;
    line-height: 1;
}

.lang-code {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.language-options {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 15px;
    padding: 0.75rem 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    min-width: 140px;
}

/* Arrow/pointer at top */
.language-options::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.language-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.language-option:hover {
    color: var(--secondary-color);
}

.language-option .flag-emoji {
    font-size: 1.5rem;
}

.language-option .lang-code {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.lang-divider {
    height: 1px;
    background: rgba(60, 77, 92, 0.1);
    margin: 0.25rem 0;
}

/* Mobile language dropdown */
@media (max-width: 991.98px) {
    .language-options {
        right: -10px;
        min-width: 80px;
    }

    .language-options::before {
        right: 15px;
    }

    .language-option {
        justify-content: center;
        gap: 0;
    }

    .language-option .lang-code {
        display: none;
    }
}

/* Contact Links in Top Bar */
.top-contact {
    font-size: 0.875rem;
}

.contact-link {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

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

.contact-link i {
    margin-right: 0.25rem;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(242, 242, 242, 0.95);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-overlay-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Menu Header */
.menu-header {
    background: var(--bg-light);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 23px 23px;
    padding: 1.5rem 0;
    flex-shrink: 0;
}

/* Menu Navigation */
.menu-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 3rem 0;
    overflow-y: auto;
}

.menu-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 400;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(60, 77, 92, 0.1);
    display: block;
}

.menu-link:hover,
.menu-link.active {
    color: var(--secondary-color);
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .menu-link {
        font-size: 1.1rem;
        padding: 0.875rem 0;
    }
    .logo-container img {
        width: 75%;
        margin-left:20px;
    }
}

/* Menu Footer */
.menu-footer {
    padding: 2rem 0;
    flex-shrink: 0;
}

.menu-footer-link {
    display: block;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.menu-footer-link:hover {
    color: var(--secondary-color);
}

.menu-footer-link i {
    margin-right: 0.5rem;
}

.menu-copyright {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.home-page .container {
    max-width: 1166px!important;
}
/* ========================================
   Hero Section
   ======================================== */

.hero-section {
    background: url(/assets/images/home_bg.webp) no-repeat;
    background-size: cover;
    width: 100%;
    color: white;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
    padding-bottom: 160px; /* Overlap with content below */
}

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

.hero-title {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: white;
    font-size:50px;
}

.hero-text {
    font-size:27px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 1);
    margin-left: auto;
    margin-right: auto;
}

.hero-text-2 {
    font-family: 'Inter';
    font-size:22px;
    line-height: 1.6;
    color: #ABBDCC;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.hero-card {
    background: white !important;
    border-radius: var(--card-radius) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
}

.hero-card .btn {
    font-size: 1rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hero-card .btn:hover {
    transform: translateY(-2px);
}

.home-locations {
    margin-top: 100px;
    font-size: 22px;
    font-weight: bold;
    gap:80px;
}

/* Contact Form (Overlapping) */

section.contact-form-card-section {
    background: url(/assets/images/home_bg2.webp), var(--primary-color) no-repeat;
    background-size: cover;
    background-position: bottom;
    width: 100%;
    background-color: var(--primary-color);
    padding-bottom: 200px;
}
.contact-form-card {
    margin-top: -100px; /* Negative margin to overlap hero (1/5 up, 4/5 down) */
    position: relative;
    z-index: 10;
}

.contact-form-card h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-primary);
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(60, 77, 92, 0.15);
}

.contact-form .form-label {
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    border-radius: var(--button-radius);
    font-weight: 500;
    padding: 1rem 2rem;
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 60px 0 80px;
        border-radius: 0 0 20px 20px;
        margin-bottom: -40px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-card {
        padding: 1.5rem !important;
    }

    .hero-card .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1rem !important;
    }

    .contact-form-card {
        margin-top: -60px;
    }

    .contact-form-card h2 {
        font-size: 1.5rem;
    }
}

/* ========================================
   Cards & Sections
   ======================================== */

.card {
    border-radius: var(--card-radius);
    border: none;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.section-padding {
    padding: var(--section-padding) 0;
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: var(--section-padding-mobile) 0;
    }
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    border-radius: var(--button-radius);
    font-weight: 500;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #2d3a47;
    border-color: #2d3a47;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* ========================================
   Forms
   ======================================== */

.form-control,
.form-select {
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(60, 77, 92, 0.15);
}

.form-label {
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.invalid-feedback {
    font-size: 0.875rem;
}

/* ========================================
   Footer
   ======================================== */

footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0 1.5rem;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

/* ========================================
   Utilities
   ======================================== */

.text-muted {
    color: var(--text-secondary) !important;
}

.text-light-custom {
    color: var(--text-light);
}

.bg-light-custom {
    background-color: var(--bg-light);
}

.bg-primary-custom {
    background-color: var(--primary-color);
}

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

/* Icon styling */
.bi {
    vertical-align: -0.125em;
}

/* ========================================
   Divider "or"
   ======================================== */

.divider-or {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-secondary);
    margin: 1rem 0;
}

.divider-or::before,
.divider-or::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}

.divider-or span {
    padding: 0 1rem;
    font-size: 0.875rem;
}

/* Secondary outline button */
.btn-outline-secondary {
    color: var(--text-primary);
    border-color: var(--border-color);
    background: transparent;
}

.btn-outline-secondary:hover {
    background-color: var(--bg-light);
    border-color: var(--text-primary);
    color: var(--text-primary);
}

/* ========================================
   Treatment Focus Section
   ======================================== */

.treatment-focus-section {
    background-color: var(--primary-color);
    padding: 80px 0 100px;
}

.treatment-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.treatment-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.treatment-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    border-radius: 7px;
    padding: 1.4rem 2rem;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.treatment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    color: var(--text-primary);
}

.treatment-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

@media (max-width: 767.98px) {
    .treatment-focus-section {
        padding: 60px 0 80px;
    }

    .treatment-title {
        font-size: 1.75rem;
    }

    .treatment-subtitle {
        font-size: 1rem;
    }

    .treatment-card {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-width: 180px;
    }
}

/* ========================================
   Doctor Bio Section
   ======================================== */

.doctor-bio-section {
    background-color: var(--bg-light);
    padding: 0 0 80px 0;
}

.doctor-image-wrapper {
    position: relative;
}

.doctor-image {
    width: 100%;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-lg);
    margin-top: -180px;
}

.doctor-info {
    padding-left: 2rem;
}

.doctor-prefix {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.doctor-name {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.doctor-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.doctor-specialties {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.doctor-specialties li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--text-primary);
}

.doctor-specialties li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.doctor-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.doctor-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.doctor-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

@media (max-width: 991.98px) {
    .doctor-bio-section {
        padding: 60px 0;
    }

    .doctor-info {
        padding-left: 0;
        margin-top: 2rem;
    }

    .doctor-name {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .doctor-name {
        font-size: 1.75rem;
    }

    .doctor-buttons {
        flex-direction: column;
    }

    .doctor-buttons .btn {
        width: 100%;
    }
}



.locations-section {
    background-color: var(--bg-white);
}

.location-card {
    border-radius: var(--card-radius);
    border: none;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.location-icon {
    margin-bottom: 1rem;
}

.location-card .card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
}

.location-card .card-text {
    font-size: 1rem;
}

@media (max-width: 991.98px) {
    .location-card {
        margin-bottom: 1.5rem;
    }
}


/* ========================================
   Further Range of Services Section
   ======================================== */

.services-range-section {
    position: relative;
}

.services-range-top {
    background-color: #D5DEE3;
    padding: 80px 0 280px;
    border-radius: 30px 30px 0 0;
}

.services-range-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.services-range-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.services-range-bottom {
    padding: 0 0 80px;
}

.operations-slider-wrapper {
    margin-top: -220px;
    position: relative;
    z-index: 10;
}

.operations-box {
    background-color: #3C4D5C;
    border-radius: 60px 10px 60px 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.operations-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 350px;
}

.operations-label {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #ABBDCC;
    margin-bottom: 0.5rem;
}

.operations-sublabel {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #ABBDCC;
    margin-bottom: 1.5rem;
}

.operations-title {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 2.0rem;
    color: white;
    line-height: 1.3;
    margin-top: 3rem;
    margin-bottom: auto;
    font-weight: bold;
}

.operations-nav {
    display: flex;
    gap: 1rem;
    justify-content: end;
}

.ops-nav-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.ops-nav-btn:hover {
    color: white;
}

.operations-image {
    height: 100%;
    min-height: 350px;
}

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

@media (max-width: 991.98px) {
    .services-range-top {
        padding: 60px 0 150px;
    }

    .services-range-title {
        font-size: 2rem;
    }

    .operations-slider-wrapper {
        margin-top: -100px;
    }

    .operations-box {
        border-radius: 0 40px 0 40px;
    }

    .operations-content {
        padding: 30px;
        min-height: auto;
    }

    .operations-label {
        font-size: 1.5rem;
    }

    .operations-title {
        font-size: 1.5rem;
        margin-top: 1rem;
    }

    .operations-image {
        min-height: 250px;
    }
}

@media (max-width: 767.98px) {
    .services-range-top {
        padding: 50px 0 120px;
        border-radius: 20px 20px 0 0;
    }

    .services-range-title {
        font-size: 1.75rem;
    }

    .operations-slider-wrapper {
        margin-top: -80px;
    }

    .operations-box {
        border-radius: 0 30px 0 30px;
    }

    .operations-content {
        padding: 25px;
    }

    .operations-label {
        font-size: 1.25rem;
    }

    .operations-title {
        font-size: 1.25rem;
    }

    .operations-image {
        min-height: 200px;
    }
}

.ops-sublabel-text,
.ops-title-text,
.ops-img {
    transition: opacity 0.3s ease;
}

/* ========================================
   Symptoms Section
   ======================================== */

.symptoms-section {
    background-color: #4A5D6A;
}

.symptoms-section .container-fluid {
    max-width: 1920px;
}

.symptoms-content {
    background: url('/assets/images/symptoms_bg.webp') no-repeat center center;
    background-size: cover;
    background-color: #4A5D6A;
    padding: 80px 60px;
    height: 100%;
    display: flex;
    align-items: center;
    max-height: 650px;
}

.symptoms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
}

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

.symptom-check {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 50%;
    background: #ABBDCC;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3C4D5C;
    font-size: 2rem;
}

.symptom-text {
    color: white;
    font-size: 1.1rem;
    line-height: 1.4;
    padding-top: 0.25rem;
}

.symptoms-image {
    height: 100%;
    max-height: 650px;
}

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

@media (max-width: 991.98px) {
    .symptoms-content {
        padding: 50px 40px;
    }

    .symptoms-grid {
        gap: 1.5rem 2rem;
    }

    .symptom-text {
        font-size: 1rem;
    }

    .symptoms-image {
        min-height: 400px;
    }
}

@media (max-width: 767.98px) {
    .symptoms-content {
        padding: 40px 25px;
    }

    .symptoms-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .symptom-check {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .symptom-text {
        font-size: 0.95rem;
    }

    .symptoms-image {
        min-height: 300px;
    }
}
