.report-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.section-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.report-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    background: #ecf0f1;
}

.report-download {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.report-download h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.report-download p {
    color: #34495e;
    margin-bottom: 25px;
    line-height: 1.6;
}

.download-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.download-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
}

.report-preview {
    flex: 1;
    min-width: 300px;
}

.pdf-slider {
    width: 100%;
    background: #f1f1f1;
    border-radius: 8px;
    overflow: hidden;
}

.pdf-slide {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ecf0f1;
}

.pdf-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Flickity slider customization */
.flickity-prev-next-button {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
}

.flickity-page-dots {
    bottom: 10px;
}

.flickity-page-dots .dot {
    background: #7f8c8d;
}

@media (max-width: 768px) {
    .report-container {
        flex-direction: column;
    }

    .report-download,
    .report-preview {
        width: 100%;
    }

    .pdf-slide {
        height: 300px;
    }
}