.mic-homepage {
    font-family: 'Arial', sans-serif;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.mic-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.mic-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mic-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #ff6f61;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #e65a50;
}

/* Stats Section */
.mic-stats {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1rem;
    color: #666;
}

/* Radar Chart Section */
.mic-radar {
    padding: 50px 0;
}

.mic-radar h2 {
    text-align: center;
    margin-bottom: 30px;
}

.radar-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

/* Reviews Table Section */
.mic-reviews-table {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.mic-reviews-table h2 {
    text-align: center;
    margin-bottom: 30px;
}

.mic-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mic-table th,
.mic-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.mic-table th {
    background-color: #1e3c72;
    color: white;
}

.mic-table tr:hover {
    background-color: #f5f5f5;
}

/* Experts Section */
.mic-experts {
    padding: 50px 0;
}

.mic-experts h2 {
    text-align: center;
    margin-bottom: 30px;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.expert-card {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Testimonials Section */
.mic-testimonials {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.mic-testimonials h2 {
    text-align: center;
    margin-bottom: 30px;
}

.testimonials-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.testimonial-item {
    flex: 0 0 300px;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-item blockquote {
    margin: 0;
    font-style: italic;
}

.testimonial-item cite {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}