.losleben-three-boxes {
    padding: 80px 0;
    font-family: 'Quicksand', sans-serif;
    text-align: center;
}

.losleben-three-boxes-header {
    margin-bottom: 50px;
}

.losleben-three-boxes-header span {
    color: #94A58D;
    font-size: 18px;
    display: block;
    margin-bottom: 15px;
}

.losleben-three-boxes-header h2 {
    font-size: 42px;
    color: #333;
    margin: 0;
}

.losleben-three-boxes-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.losleben-three-boxes .box-item {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.losleben-three-boxes .box-item:hover {
    transform: translateY(-5px);
}

.losleben-three-boxes .box-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.losleben-three-boxes .box-icon svg {
    width: 100%;
    height: 100%;
    fill: #F2AE8F; /* Peach color from theme */
}

.losleben-three-boxes .box-item h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.losleben-three-boxes .box-item p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .losleben-three-boxes-header h2 {
        font-size: 32px;
    }
    .losleben-three-boxes .box-item {
        min-width: 100%;
    }
}
