/* Patients page specific styles */
.patients-page-container {
    width: 100%;
    overflow-x: hidden;
}

/* Hero Section */
.patients-hero-section {
    background: linear-gradient(135deg, #E8F5E8 0%, #F0F8FF 100%);
    padding: 80px 40px;
    text-align: center;
}

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

.patients-hero-content h1 {
    font-size: 3.2rem;
    color: #1B1B1B;
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: bold;
}

.patients-hero-subtitle {
    font-size: 1.25rem;
    color: #4A4A4A;
    margin-bottom: 50px;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Visual */
.patients-hero-visual {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.patient-illustration {
    position: relative;
    width: 300px;
    height: 200px;
}

.patient-figure {
    position: absolute;
    left: 20px;
    top: 20px;
}

.patient-head {
    width: 40px;
    height: 40px;
    background-color: #E8F4FD;
    border: 2px solid #1E88E5;
    border-radius: 50%;
    margin-bottom: 8px;
}

.patient-body {
    width: 60px;
    height: 80px;
    background-color: #E8F4FD;
    border: 2px solid #1E88E5;
    border-radius: 30px 30px 0 0;
    margin-left: -10px;
}

.communication-lines {
    position: absolute;
    top: 50px;
    left: 100px;
}

.line {
    width: 60px;
    height: 2px;
    background-color: #43A047;
    margin-bottom: 8px;
    opacity: 0.7;
    animation: pulse 2s infinite;
}

.line-1 {
    animation-delay: 0s;
}

.line-2 {
    animation-delay: 0.5s;
}

.line-3 {
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.imaging-clinic {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 120px;
    height: 120px;
}

.clinic-building {
    position: relative;
    width: 80px;
    height: 70px;
    margin-bottom: 10px;
}

.clinic-roof {
    width: 80px;
    height: 20px;
    background-color: #757575;
    border-radius: 8px 8px 0 0;
    position: absolute;
    top: 0;
}

.clinic-walls {
    width: 80px;
    height: 50px;
    background-color: #E8F4FD;
    border: 2px solid #1E88E5;
    border-radius: 0 0 4px 4px;
    position: absolute;
    top: 20px;
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
    gap: 3px;
}

.clinic-window {
    width: 15px;
    height: 12px;
    background-color: #81D4FA;
    border: 1px solid #0277BD;
    border-radius: 2px;
}

.clinic-door {
    width: 18px;
    height: 25px;
    background-color: #8D6E63;
    border: 1px solid #5D4037;
    border-radius: 2px;
    position: absolute;
    bottom: 5px;
    right: 8px;
}

.clinic-sign {
    position: absolute;
    top: -15px;
    left: 10px;
    background-color: white;
    border: 1px solid #1E88E5;
    border-radius: 4px;
    padding: 2px 4px;
    font-size: 6px;
    line-height: 1;
    text-align: center;
}

.sign-text {
    color: #1E88E5;
    font-weight: bold;
    font-size: 5px;
    margin: 1px 0;
}

.clinic-equipment {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mri-machine {
    width: 35px;
    height: 20px;
    background-color: #F5F5F5;
    border: 2px solid #757575;
    border-radius: 6px;
    position: relative;
}

.mri-machine::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #1E88E5;
    border-radius: 50%;
}

.equipment-indicator {
    font-size: 16px;
    color: #43A047;
    font-weight: bold;
}

/* What This Means Section */
.patients-what-this-means-section {
    background-color: white;
    padding: 80px 40px;
}

.patients-what-this-means-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.patients-what-this-means-container h2 {
    font-size: 2.5rem;
    color: #1B1B1B;
    margin-bottom: 60px;
    font-weight: bold;
}

.means-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.means-card {
    background-color: #F8F9FA;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.means-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.means-icon {
    margin-bottom: 24px;
}

.means-card h3 {
    font-size: 1.2rem;
    color: #1B1B1B;
    line-height: 1.4;
    font-weight: 600;
}

/* Benefits Section */
.patients-benefits-section {
    background-color: #FAFAFA;
    padding: 80px 40px;
}

.patients-benefits-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.patients-benefits-container h2 {
    font-size: 2.5rem;
    color: #1B1B1B;
    margin-bottom: 60px;
    font-weight: bold;
}

.benefits-list-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 24px;
    text-align: left;
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-item h3 {
    font-size: 1.2rem;
    color: #1B1B1B;
    line-height: 1.4;
    font-weight: 600;
    margin: 0;
}

/* FAQ Section */
.patients-faq-section {
    background-color: white;
    padding: 80px 40px;
}

.patients-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.patients-faq-container h2 {
    font-size: 2.5rem;
    color: #1B1B1B;
    margin-bottom: 50px;
    font-weight: bold;
    text-align: center;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.faq-item:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.faq-question {
    display: flex;
    justify-content: between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    background-color: #F8F9FA;
    transition: background-color 0.3s ease;
}

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

.faq-question h3 {
    font-size: 1.1rem;
    color: #1B1B1B;
    margin: 0;
    font-weight: 600;
    flex-grow: 1;
}

.faq-toggle {
    margin-left: 16px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

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

.faq-answer p {
    margin: 0;
    font-size: 1rem;
    color: #4A4A4A;
    line-height: 1.6;
}

/* Final CTA Section */
.patients-final-cta-section {
    background-color: white;
    padding: 80px 40px;
    text-align: center;
}

.patients-final-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.patients-final-cta-container h2 {
    font-size: 2.5rem;
    color: #1B1B1B;
    margin-bottom: 16px;
    font-weight: bold;
}

.patients-final-cta-container p {
    font-size: 1.25rem;
    color: #4A4A4A;
    margin-bottom: 40px;
    line-height: 1.5;
}

.patients-final-cta-button {
    background-color: #1E88E5;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.patients-final-cta-button:hover {
    background-color: #1976D2;
    text-decoration: none;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .means-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .patients-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .patients-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .patients-what-this-means-container h2,
    .patients-benefits-container h2,
    .patients-faq-container h2,
    .patients-final-cta-container h2 {
        font-size: 2rem;
    }
    
    .patient-illustration {
        width: 250px;
        height: 150px;
    }
    
    .means-card,
    .benefit-item {
        padding: 30px 20px;
    }
    
    .faq-question,
    .faq-answer {
        padding: 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .patients-hero-section,
    .patients-what-this-means-section,
    .patients-benefits-section,
    .patients-faq-section,
    .patients-final-cta-section {
        padding: 60px 20px;
    }
    
    .patients-hero-content h1 {
        font-size: 2rem;
    }
    
    .patient-illustration {
        width: 200px;
        height: 120px;
    }
    
    .means-card,
    .benefit-item {
        padding: 25px 15px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}
