.hero {
    padding: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    color: #1565c0;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.hero-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.features {
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.feature-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.feature-card h2 {
    color: #1565c0;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.news {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto 5rem;
}

.news h2 {
    text-align: center;
    color: #1565c0;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

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

.news-item {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-item h3 {
    color: #1565c0;
    font-size: 1.5rem;
    margin: 1.5rem;
}

.news-item p {
    color: #666;
    line-height: 1.6;
    padding: 0 1.5rem 1.5rem;
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }
    .hero-text {
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .hero-image img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 1rem;
    }
    .hero-text h1 {
        font-size: 2rem;
    }
    .hero-text p {
        font-size: 1.1rem;
    }
    .hero-description {
        font-size: 1rem;
    }
}