/* Astma page specific styles */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2196F3, #42A5F5);
    color: white;
    padding: 60px 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hero-section h1 { font-size: 48px; margin-bottom: 15px; font-weight: bold; }
.hero-section p { font-size: 18px; opacity: 0.95; }
.pdf-button {
    background: white;
    color: #2196F3;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    white-space: nowrap;
}
.pdf-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.pdf-button svg {
    width: 20px;
    height: 20px;
    fill: #2196F3;
}

/* FAQ Container */
.faq-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 40px;
    margin-bottom: 30px;
}

/* FAQ Item */
.faq-item {
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
}
.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

/* Question Header */
.faq-question {
    background: linear-gradient(135deg, #2196F3, #42A5F5);
    color: white;
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
}
.faq-question:hover {
    background: linear-gradient(135deg, #1976D2, #2196F3);
}
.faq-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-question-text {
    flex: 1;
    font-size: 20px;
    font-weight: bold;
}
.faq-toggle {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: transform 0.3s;
}
.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* Answer Section */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background: #F5F9FF;
}
.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 30px;
}
.answer-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 15px;
}
.badge-yes {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
}
.badge-no {
    background: linear-gradient(135deg, #F44336, #EF5350);
    color: white;
}
.badge-conditional {
    background: linear-gradient(135deg, #FF9800, #FFB74D);
    color: white;
}
.faq-answer p {
    color: #333;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 15px;
    text-align: justify;
}
.faq-answer strong {
    color: #1976D2;
}

/* Info Box */
.info-box {
    background: white;
    border-left: 4px solid #2196F3;
    padding: 25px;
    border-radius: 0 8px 8px 0;
    margin: 30px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.info-box h3 {
    color: #1976D2;
    margin-bottom: 15px;
    font-size: 20px;
}
.info-box p {
    line-height: 1.8;
    color: #555;
}

/* Author Info */
.author-info {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin: 30px 0;
}
.author-info p {
    color: #666;
    font-style: italic;
    font-size: 14px;
}
