.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    padding: 0;
    width: 100% !important;
    margin: 0 !important;
}

.swiper-container {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    height: 600px;
    justify-content: center;
    text-align: center;
    color: white;
}

.swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}

.slide-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
}

.slide-content h1 {
    font-size: 3rem;
    margin: 0;
}

.slide-content p {
    font-size: 1.5rem;
}

.swiper-button-next, .swiper-button-prev {
    top: 35% !important;
    transform: translateY(-35%) !important;
    margin-top: 0 !important;
    color: #4CAF50 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 16px !important;
}

.swiper-pagination {
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.7 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
}

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

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


.review-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

article, .service {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

article img, .service img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.news-image {
    width: 100%;
    height: 320px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.service-image {
    width: 100%;
    height: 195px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    margin-bottom: 1rem;
    position: relative;
}

.service-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    color: rgba(76, 175, 80, 0.9);
    padding: 4px 8px;
    border-radius: 7px;
    border: 1px solid rgba(76, 175, 80, 0.9);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.service-tag:hover {
    background: rgba(76, 175, 80, 1);
    color: white;
}

