/* Hero Services Section */
.hero-services {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-services .hero-content {
    text-align: left;
}

/* Main Services Section */
.main-services {
    padding: 64px 0;
    background-color: #e5e7eb;
}

.main-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.main-service-card {
    background-color: #3a3a3a;
    color: white;
    padding: 64px 32px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.main-service-card:hover {
    background-color: #454545;
    transform: translateY(-5px);
}

.main-service-icon {
    margin: 0 auto 24px;
    color: white;
}

.main-service-title {
    font-size: 18px;
    font-weight: 600;
}

/* Service Details Section */
.service-details {
    padding: 64px 0;
    background-color: #f3f4f6;
}

.details-title {
    font-size: 32px;
    color: #1f2937;
    margin-bottom: 48px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.detail-card {
    border-radius: 8px;
    overflow: hidden;
}

.detail-large {
    background-color: #e5e7eb;
    height: 280px;
}

.detail-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-text {
    background-color: white;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.detail-card-title {
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.detail-card-description {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
}

.detail-websites {
    grid-column: 1 / -1;
    height: 320px;
    background-color: #2d2d2d;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.detail-websites img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Footer Services */
.footer-services {
    background-color: #3a3a3a;
    color: white;
    padding: 48px 0;
}

.footer-services-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 48px;
}

/* Responsive */
@media (max-width: 768px) {
    .details-grid {
        grid-template-columns: 1fr;
    }

    .detail-websites {
        grid-column: 1;
        height: 250px;
    }

    .main-services-grid {
        grid-template-columns: 1fr;
    }

    .footer-services-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .hero-services {
        height: 350px;
    }

    .hero-services .hero-title {
        font-size: 28px;
    }

    .hero-services .hero-subtitle {
        font-size: 16px;
    }
}
