/* Service Hub Block - Full Width Section */
.service-hub-section {
    position: relative;
    width: 100%;
    min-height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.service-hub-container {
    width: 100%;
    padding: 30px 15px;
}

.service-hub-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.service-hub-logo {
    max-width: 280px;
    height: auto;
}

.service-hub-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.service-hub-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-hub-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.service-hub-claim {
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .service-hub-cta-content {
        align-items: flex-end;
        gap: 10px;
    }

    .service-hub-claim {
        font-size: 16px;
    }
}

.service-hub-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background-color: #ffffff;
    color: #333333;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: lowercase;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}

.service-hub-btn:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
    text-decoration: none;
}

.service-hub-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.service-hub-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive - Desktop */
@media (min-width: 768px) {
    .service-hub-section {
        min-height: 280px;
    }

    .service-hub-wrapper {
        flex-direction: row;
        justify-content: space-between;
        gap: 40px;
    }

    .service-hub-logo {
        max-width: 350px;
    }

    .service-hub-btn {
        padding: 15px 40px;
        font-size: 16px;
    }

    .service-hub-icon {
        width: 50px;
        height: 50px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .service-hub-container {
        padding: 40px 15px;
    }

    .service-hub-logo {
        max-width: 400px;
    }
}
