/* body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4;
} */

.container-int {
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* align-items: center; */
    width: 90%;
    max-width: 1200px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
 
}

.content {
    flex: 1;
    padding: 20px;
}

.content h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.image {
    flex: 1;
    background: url('https://chennaiheritagehospital.com/images/international-faq.jpg') no-repeat center center;
    background-size: cover;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container-int {
        width: 95%;
    }

    .content h1 {
        font-size: 1.8rem;
    }

    .content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    .container-int {
        flex-direction: column;
    }

    .image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .content {
        padding: 15px;
    }

    .content h1 {
        font-size: 1.6rem;
    }

    .content p {
        font-size: 0.9rem;
    }

    .image {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .content h1 {
        font-size: 1.4rem;
    }

    .content p {
        font-size: 0.85rem;
    }

    .image {
        height: 200px;
    }
}




/* General Section Styles */
.treatment-journey {
    font-family: Arial, sans-serif;
    /* background: linear-gradient(135deg, #f0f9ff, #eaf4ff); */
    padding: 60px 20px;
    text-align: center;
}

.section-heading {
    font-size: 2rem;
    color: #2a334e;
    margin-bottom: 40px;
    font-weight: bold;
}

/* Steps Wrapper for Layout */
.steps-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: left;
}

/* Step Card Styles */
.step-card {
    display: flex;
    /* align-items: center; */
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 20px;
    flex: 1 1 calc(33.33% - 40px);
    /* Default for desktop: 3 items per row */
    max-width: calc(33.33% - 40px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Icon and Details */
.step-icon {
    font-size: 3rem;
    color: #33d687;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-details {
    text-align: left;
}

.step-number {
    text-align: left;
    font-size: 1.2rem;
    color: #33d687;
    font-weight: bold;
}

.step-title {
    text-align: left;
    font-size: 1rem;
    color: #333;
    font-weight: normal;
}

/* Responsive Design */
@media (max-width: 1024px) {

    /* Tablet: 2 items per row */
    .step-card {
        flex: 1 1 calc(50% - 40px);
        max-width: calc(50% - 40px);
    }
}

@media (max-width: 767px) {

    /* Phone: 1 item per row */
    .step-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .step-details {
        text-align: center;
    }

    .step-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .step-card {
        flex-direction: column;
    }
}

.qna-section {
    background-color: #f8f9fa;
    padding: 40px 0;
    text-align: center;
}

.qna-container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    /* background: #ffffff; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    border-radius: 8px;
}

.qna-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    transition: all 0.3s ease;
}

.question {
    font-size: 1.2em;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #333;
    padding: 10px 15px;
    border-radius: 5px;
    transition: color 0.3s, background-color 0.3s;
    text-align: left;
}

.question .icon {
    margin-right: 10px;
    font-size: 1.2em;
}

.question {
    background-color: #33d687;
    color: white;
}

.question:hover {
    color: #fff;
    background-color: #2a334e;
}

.answer {
    display: none;
    padding-top: 10px;
    color: #555;
    font-size: 1em;
    animation: fadeIn 0.3s ease-out;
    text-align: left;
}

/* Default answer styling */
.answer {
    display: none;
    padding: 10px;
    color: #fff;
    /* Text color for the answer */
    font-size: 1em;
    background-color: #2a334e;
    /* Background color for the active answer */
    border-radius: 8px;
    /* Optional: rounded corners */
    animation: fadeIn 0.3s ease-out;
    text-align: left;
}

/* Active item styling */
.qna-item.active .answer {
    display: block;
    /* Show answer when active */
}



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* Add horizontal line below heading for desktop only */
@media (min-width: 768px) {
    .section-heading::after {
        content: '';
        display: block;
        width: 15%;
        height: 5px;
        background-color: #33d687;
        /* Line color */
        margin: 10px auto 0;
        /* Center align and add spacing */
    }
}

@media (max-width: 768px) {
    .step {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.ttm-page-title-row {
    background: url(../images/pagetitle-bg.jpg);
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}