/* What We Offer Section Styles */
#offer {
    padding: 20px 0 100px;
    position: relative;
    background: transparent;
}

/* Section Title Styling - Matching About Alpine */
.offer-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin: 0 0 60px 0;
    text-align: center;
}

.card-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

/* Box Styling */
.management-box {
    width: 350px;
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08); /* Matching About Alpine border */
    border-radius: 30px; /* Matching About Alpine radius */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.management-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Image Headers */
.drivershub-image,
.tracker-image,
.discord-image,
.box-image,
.convoy-image,
.community-image,
.requirements-image,
.activity-image,
.application-image {
    height: 200px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover !important;
    background-position: center !important;
    overflow: hidden;
}

/* Dark Overlay */
.drivershub-image::before,
.tracker-image::before,
.discord-image::before,
.box-image::before,
.convoy-image::before,
.community-image::before,
.requirements-image::before,
.activity-image::before,
.application-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.management-box:hover [class*="-image"]::before {
    background: rgba(0, 0, 0, 0.3);
}

/* Box Title */
.management-box h1 {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Content - Matching About Alpine Text */
.management-content {
    padding: 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #d0d0d0;
    font-weight: 300;
    text-align: center;
}
