/* Enzalutamid Page Styles */

/* Variables for Enzalutamid page */
:root {
    --enzalutamid-primary: #2C5282;
    --enzalutamid-secondary: #4299E1;
    --enzalutamid-accent: #b43744;
    --enzalutamid-text: #2D3748;
    --enzalutamid-light-bg: #EBF8FF;
    --enzalutamid-warning: #C53030;
    --enzalutamid-success: #38A169;
}

/* Hero Banner for Enzalutamid */
.enzalutamid-hero {
    background: linear-gradient(135deg, var(--enzalutamid-primary) 0%, #07054f 100%);
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.enzalutamid-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.enzalutamid-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 15px;
}

.enzalutamid-hero .hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.enzalutamid-hero .hero-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Hero Banner Buttons Styles */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-width: 220px;
    justify-content: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn.primary {
    background: linear-gradient(45deg, #00bcd4, #4dd0e1);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
}

.hero-btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 188, 212, 0.6), 0 0 20px rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    background: linear-gradient(45deg, #0097a7, #00bcd4);
}

.hero-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.hero-btn.secondary:hover {
    background: white;
    color: var(--enzalutamid-primary);
    transform: translateY(-3px);
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    border-color: white;
}

.hero-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: scale(1.2);
}

/* How to Get Section Button Styles */
.feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(45deg, var(--enzalutamid-primary), var(--enzalutamid-secondary));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(44, 82, 130, 0.3);
    position: relative;
    overflow: hidden;
}

.feature-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.4s;
}

.feature-btn:hover::before {
    left: 100%;
}

.feature-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 82, 130, 0.5);
    color: white;
    text-decoration: none;
    background: linear-gradient(45deg, var(--enzalutamid-secondary), var(--enzalutamid-primary));
}

.feature-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.feature-btn:hover i {
    transform: translateX(3px);
}

/* Alternative button style for How to Get section */
.get-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(45deg, var(--enzalutamid-accent), #9a2f3a);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(180, 55, 68, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.get-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(180, 55, 68, 0.6);
    color: white;
    text-decoration: none;
}

.get-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.get-btn:hover i {
    transform: rotate(15deg) scale(1.1);
}

/* Pulse animation for primary buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 188, 212, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 188, 212, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 188, 212, 0);
    }
}

.hero-btn.primary:focus,
.feature-btn:focus,
.get-btn:focus {
    animation: pulse 1.5s infinite;
    outline: none;
}

/* WhatsApp button specific styles */
.hero-btn.secondary[href*="whatsapp"],
.hero-btn.secondary[href*="wa.me"] {
    background: transparent;
    border: 2px solid white;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.hero-btn.secondary[href*="whatsapp"]:hover,
.hero-btn.secondary[href*="wa.me"]:hover {
    background: white;
    border-color: white;
    color: var(--enzalutamid-primary);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Loading state for buttons */
.hero-btn.loading,
.feature-btn.loading,
.get-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.hero-btn.loading::after,
.feature-btn.loading::after,
.get-btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 32px;
        font-size: 15px;
        min-width: auto;
    }
    
    .hero-btn i {
        font-size: 16px;
    }
    
    .feature-btn {
        padding: 10px 20px;
        font-size: 13px;
        border-radius: 20px;
    }
    
    .get-btn {
        padding: 12px 24px;
        font-size: 14px;
        border-radius: 25px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        gap: 12px;
    }
    
    .hero-btn {
        padding: 14px 28px;
        font-size: 14px;
        letter-spacing: 0.3px;
    }
    
    .hero-btn i {
        font-size: 14px;
    }
    
    .feature-btn {
        padding: 8px 16px;
        font-size: 12px;
        gap: 8px;
    }
    
    .feature-btn i {
        font-size: 10px;
    }
    
    .get-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Accessibility improvements */
.hero-btn:focus,
.feature-btn:focus,
.get-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-btn.primary {
        border: 2px solid white;
    }
    
    .hero-btn.secondary {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .feature-btn,
    .get-btn {
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .hero-btn,
    .feature-btn,
    .get-btn {
        transition: none;
    }
    
    .hero-btn::before,
    .feature-btn::before {
        display: none;
    }
    
    .hero-btn:hover,
    .feature-btn:hover,
    .get-btn:hover {
        transform: none;
    }
}

/* About Section Styles */
.about-section {
    background: #f8f9fa;
    padding: 60px 0;
    margin: 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-content {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    padding: 0;
}

.about-title {
    color: var(--enzalutamid-primary);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    border-bottom: 3px solid var(--enzalutamid-secondary);
    padding-bottom: 10px;
}

.about-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--enzalutamid-text);
    margin-bottom: 25px;
    text-align: justify;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(45deg, var(--enzalutamid-accent), #9a2f3a);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(180, 55, 68, 0.3);
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(180, 55, 68, 0.5);
    color: white;
    text-decoration: none;
}

.about-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.about-btn:hover i {
    transform: translateX(3px);
}

/* Features Section Styles */
.features-section {
    background: white;
    padding: 60px 0;
    margin: 0;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--enzalutamid-secondary);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--enzalutamid-secondary);
}

.feature-card:hover::before {
    height: 6px;
    background: var(--enzalutamid-accent);
}

/* Color variations for feature cards */
.feature-card.blue::before {
    background: var(--enzalutamid-secondary);
}

.feature-card.blue:hover::before {
    background: #3182ce;
}

.feature-card.green::before {
    background: var(--enzalutamid-success);
}

.feature-card.green:hover::before {
    background: #2f855a;
}

.feature-card.orange::before {
    background: #ed8936;
}

.feature-card.orange:hover::before {
    background: #dd6b20;
}

.feature-card.purple::before {
    background: #9f7aea;
}

.feature-card.purple:hover::before {
    background: #805ad5;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--enzalutamid-light-bg);
    color: var(--enzalutamid-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--enzalutamid-secondary);
    color: white;
    transform: scale(1.1);
}

/* Color variations for feature icons */
.feature-card.blue:hover .feature-icon {
    background: var(--enzalutamid-secondary);
}

.feature-card.green:hover .feature-icon {
    background: var(--enzalutamid-success);
}

.feature-card.orange:hover .feature-icon {
    background: #ed8936;
}

.feature-card.purple:hover .feature-icon {
    background: #9f7aea;
}

.feature-title {
    color: var(--enzalutamid-primary);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--enzalutamid-text);
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 400px 1fr;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .about-description {
        font-size: 15px;
        margin-bottom: 20px;
        text-align: left;
    }
    
    .about-btn {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .features-section {
        padding: 40px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .feature-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .feature-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 30px 0;
    }
    
    .about-container {
        padding: 0 10px;
    }
    
    .about-title {
        font-size: 24px;
    }
    
    .about-description {
        font-size: 14px;
    }
    
    .about-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .features-section {
        padding: 30px 0;
    }
    
    .features-grid {
        padding: 0 10px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .feature-title {
        font-size: 18px;
    }
}

/* Content Sections */
.enzalutamid-content {
    background: #f8f9fa;
    padding: 20px 0;
}

.info-section {
    background: white;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.info-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
}

.info-section h2 {
    color: var(--enzalutamid-primary);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    border-bottom: 3px solid var(--enzalutamid-secondary);
    padding-bottom: 8px;
    text-align: center;
}

.info-section h3 {
    color: var(--enzalutamid-primary);
    font-size: 28px;
    font-weight: 600;
    margin: 15px 0 10px 0;
}

.info-section h4 {
    color: var(--enzalutamid-primary);
    font-size: 22px;
    font-weight: 600;
    margin: 10px 0 8px 0;
}

.info-section p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--enzalutamid-text);
    margin-bottom: 10px;
}

/* Info and Warning Boxes */
.info-box {
    background: var(--enzalutamid-light-bg);
    border-left: 4px solid var(--enzalutamid-secondary);
    padding: 15px;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.warning-box {
    background: #fff5f5;
    border-left: 4px solid var(--enzalutamid-warning);
    padding: 15px;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.warning-box p {
    margin: 0;
    color: var(--enzalutamid-warning);
    font-weight: 600;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    margin: 15px 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

th {
    background: var(--enzalutamid-light-bg);
    color: var(--enzalutamid-primary);
    font-weight: 600;
    padding: 12px 10px;
    text-align: left;
    border-bottom: 2px solid var(--enzalutamid-secondary);
    font-size: 16px;
}

td {
    padding: 10px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 15px;
    color: var(--enzalutamid-text);
}

tr:hover {
    background: #f7fafc;
}

/* Feature Cards in content sections */
.info-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin: 15px 0;
}

.info-section .feature-card {
    background: white;
    border: 2px solid var(--enzalutamid-light-bg);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.info-section .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: var(--enzalutamid-secondary);
}

.info-section .feature-card h4 {
    color: var(--enzalutamid-primary);
    font-size: 20px;
    margin-bottom: 1px;
    border-bottom: 2px solid var(--enzalutamid-light-bg);
    padding-bottom: 1px;
}

.info-section .feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 1px;
}

.info-section .feature-card li {
    padding: 2px 0;
    padding-left: 18px;
    position: relative;
    font-size: 15px;
    line-height: 1.4;
    color: var(--enzalutamid-text);
}

.info-section .feature-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--enzalutamid-success);
    font-weight: bold;
    font-size: 16px;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin: 10px 0;
    border: 2px solid var(--enzalutamid-light-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--enzalutamid-secondary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item summary {
    padding: 15px;
    background: var(--enzalutamid-light-bg);
    cursor: pointer;
    font-weight: 600;
    color: var(--enzalutamid-primary);
    font-size: 16px;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

.faq-item summary:hover {
    background: #dbeafe;
}

.faq-item[open] summary {
    border-bottom: 2px solid var(--enzalutamid-secondary);
    background: #dbeafe;
}

.faq-item p {
    padding: 15px;
    margin: 0;
    background: white;
    font-size: 15px;
    line-height: 1.6;
    color: var(--enzalutamid-text);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--enzalutamid-primary) 0%, #1a365d 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 20px;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.cta-btn.primary {
    background: linear-gradient(45deg, var(--enzalutamid-accent), #9a2f3a);
    color: white;
    box-shadow: 0 5px 15px rgba(180, 55, 68, 0.4);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(180, 55, 68, 0.6);
    color: white;
    text-decoration: none;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: var(--enzalutamid-primary);
    transform: translateY(-3px);
    text-decoration: none;
}

/* Expert Reviews Styles */
.expert-review {
    position: relative;
    padding: 20px 15px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-left: 4px solid var(--enzalutamid-accent);
}

.expert-review .quote-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 35px;
    height: 35px;
    background: var(--enzalutamid-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.expert-review blockquote {
    margin: 0;
    padding-left: 50px;
    font-style: italic;
}

.expert-review blockquote p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--enzalutamid-text);
    margin-bottom: 10px;
}

.expert-review blockquote footer {
    font-style: normal;
    font-weight: 600;
    color: var(--enzalutamid-primary);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .info-section .container {
        padding: 15px;
    }
    
    .info-section .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .enzalutamid-hero .hero-title {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .enzalutamid-hero .hero-description {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .enzalutamid-content {
        padding: 15px 0;
    }
    
    .info-section {
        margin-bottom: 15px;
    }
    
    .info-section .container {
        padding: 15px 10px;
    }
    
    .info-section h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .info-section h3 {
        font-size: 22px;
        margin: 10px 0 8px 0;
    }
    
    .info-section .features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 10px 0;
    }
    
    .info-section .feature-card {
        padding: 10px;
    }
    
    .table-responsive {
        font-size: 14px;
    }
    
    th, td {
        padding: 8px 5px;
        font-size: 13px;
    }
    
    .cta-section {
        padding: 30px 0;
    }
    
    .cta-content h2 {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .cta-content p {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .faq-item summary {
        padding: 10px 15px;
        font-size: 15px;
    }
    
    .faq-item p {
        padding: 15px;
        font-size: 14px;
    }

    .expert-review {
        padding: 15px 10px;
    }
    
    .expert-review .quote-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
        top: 8px;
        left: 8px;
    }
    
    .expert-review blockquote {
        padding-left: 45px;
    }
    
    .expert-review blockquote p {
        font-size: 15px;
    }
    
    .expert-review blockquote footer {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .enzalutamid-hero .hero-title {
        font-size: 26px;
    }
    
    .enzalutamid-hero .hero-description {
        font-size: 14px;
    }
    
    .info-section h2 {
        font-size: 24px;
    }
    
    .info-section h3 {
        font-size: 20px;
    }
    
    .info-section .feature-card h4 {
        font-size: 18px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
}px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
}

/* Expert Reviews Styles */
.expert-review {
    position: relative;
    padding: 30px 25px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-left: 4px solid var(--enzalutamid-accent);
}

.expert-review .quote-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    background: var(--enzalutamid-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.expert-review blockquote {
    margin: 0;
    padding-left: 60px;
    font-style: italic;
}

.expert-review blockquote p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--enzalutamid-text);
    margin-bottom: 15px;
}

.expert-review blockquote footer {
    font-style: normal;
    font-weight: 600;
    color: var(--enzalutamid-primary);
    font-size: 14px;
}

/* Additional responsive styles for expert reviews */
@media (max-width: 768px) {
    .expert-review {
        padding: 25px 20px;
    }
    
    .expert-review .quote-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
        top: 12px;
        left: 12px;
    }
    
    .expert-review blockquote {
        padding-left: 55px;
    }
    
    .expert-review blockquote p {
        font-size: 15px;
    }
    
    .expert-review blockquote footer {
        font-size: 13px;
    }
}

/* Стили для секции с датой публикации */
.article-date-section {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 20px 0;
}

.article-meta {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.publication-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6c757d;
}

.publication-date i {
    color: #007bff;
    font-size: 16px;
}

.date-label {
    font-weight: 500;
    color: #495057;
}

.date-value {
    font-weight: 600;
    color: #212529;
    background-color: #e3f2fd;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #bbdefb;
}

/* Адаптивные стили */
@media (max-width: 768px) {
    .article-date-section {
        padding: 15px 0;
    }
    
    .publication-date {
        font-size: 13px;
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .date-value {
        padding: 3px 6px;
        font-size: 13px;
    }
}